blob: 47974ecfa8b73943fce75b4add7b1a56bff83afb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff -Nru webmail/auth.c webmail.gentoo/auth.c
--- webmail/auth.c 2001-12-07 13:57:24.000000000 +0100
+++ webmail.gentoo/auth.c 2002-10-28 18:59:04.000000000 +0100
@@ -78,7 +78,7 @@
static int login_maildir(const char *maildir)
{
if (!maildir || !*maildir)
- maildir="Maildir";
+ maildir=USER_DIR;
if (chdir(maildir)) return (-1);
return (0);
}
diff -Nru webmail/sqwebmail.h webmail.gentoo/sqwebmail.h
--- webmail/sqwebmail.h 2001-12-07 13:57:25.000000000 +0100
+++ webmail.gentoo/sqwebmail.h 2002-10-28 18:58:45.000000000 +0100
@@ -22,7 +22,7 @@
/* Location of the user's Maildir */
-#define USER_DIR "Maildir"
+#define USER_DIR ".maildir"
/* For PAM-based authentication */
|