blob: 09a2dd32760534c91b631b3fb22ebece0c4b849e (
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
25
26
27
28
29
30
31
|
$NetBSD: patch-aa,v 1.4 2002/05/02 16:18:49 martti Exp $
--- config/config_default.php.orig Mon Apr 1 08:47:47 2002
+++ config/config_default.php Thu May 2 09:30:34 2002
@@ -192,7 +192,7 @@
* false. (Cyrus works fine whether it's true OR false).
*/
global $show_contain_subfolders_option;
-$show_contain_subfolders_option = false;
+$show_contain_subfolders_option = true;
/**
* This option controls what character set is used when sending mail
@@ -219,7 +219,7 @@
* $data_dir = '../data/';
*/
global $data_dir;
-$data_dir = '../data/';
+$data_dir = '@USER_PREFS_DIR@/';
/**
* Path to directory used for storing attachments while a mail is
@@ -235,7 +235,7 @@
* + It should probably be another directory than data_dir.
*/
global $attachment_dir;
-$attachment_dir = "$data_dir";
+$attachment_dir = "@ATTACHMENTS_DIR@/";
/* Hash level used for data directory. */
global $dir_hash_level;
|