summaryrefslogtreecommitdiffstats
path: root/roundcubemail-1.6-confpath.patch
blob: 0b372eec16e55f864a36a64542f56432d2b42cf5 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
diff -up ./config/defaults.inc.php.rpm ./config/defaults.inc.php
--- ./config/defaults.inc.php.rpm	2022-03-06 21:32:08.000000000 +0100
+++ ./config/defaults.inc.php	2022-03-07 11:48:41.252956405 +0100
@@ -525,11 +525,11 @@ $config['user_aliases'] = false;
 // use this folder to store log files
 // must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
 // This is used by the 'file' log driver.
-$config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/';
+$config['log_dir'] = '/var/log/roundcubemail/';
 
 // Location of temporary saved files such as attachments and cache files
 // must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
-$config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/';
+$config['temp_dir'] = '/var/lib/roundcubemail/temp/';
 
 // expire files in temp_dir after 48 hours
 // possible units: s, m, h, d, w
@@ -763,7 +763,7 @@ $config['mime_magic'] = null;
 // This is used to derive mime-types from the filename extension or vice versa.
 // Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system,
 // download it from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
-$config['mime_types'] = null;
+$config['mime_types'] = '/etc/mime.types';
 
 // path to imagemagick identify binary (if not set we'll use Imagick or GD extensions)
 $config['im_identify_path'] = null;
@@ -1452,3 +1452,7 @@ $config['message_show_email'] = false;
 // 0 - Reply-All always
 // 1 - Reply-List if mailing list is detected
 $config['reply_all_mode'] = 0;
+
+// Keys directory for all users.
+// Must be writeable by PHP process, and not in the web server document root
+$config['enigma_pgp_homedir'] = '/var/lib/roundcubemail/enigma';
diff -up ./plugins/enigma/config.inc.php.dist.rpm ./plugins/enigma/config.inc.php.dist
--- ./plugins/enigma/config.inc.php.dist.rpm	2022-03-06 21:32:08.000000000 +0100
+++ ./plugins/enigma/config.inc.php.dist	2022-03-07 11:48:41.252956405 +0100
@@ -12,10 +12,6 @@ $config['enigma_smime_driver'] = 'phpssl
 // Enables logging of enigma operations (including Crypt_GPG debug info)
 $config['enigma_debug'] = false;
 
-// REQUIRED! Keys directory for all users.
-// Must be writeable by PHP process, and not in the web server document root
-$config['enigma_pgp_homedir'] = null;
-
 // Location of gpg binary. By default it will be auto-detected.
 // This is also a way to force gpg2 use if there are both 1.x and 2.x on the system.
 $config['enigma_pgp_binary'] = '';
diff -up ./program/include/iniset.php.rpm ./program/include/iniset.php
--- ./program/include/iniset.php.rpm	2022-03-06 21:32:09.000000000 +0100
+++ ./program/include/iniset.php	2022-03-07 11:49:54.668718920 +0100
@@ -32,7 +32,7 @@ if (!defined('INSTALL_PATH')) {
 }
 
 if (!defined('RCMAIL_CONFIG_DIR')) {
-    define('RCMAIL_CONFIG_DIR', getenv('ROUNDCUBE_CONFIG_DIR') ?: (INSTALL_PATH . 'config'));
+    define('RCMAIL_CONFIG_DIR', '/etc/roundcubemail');
 }
 
 if (!defined('RCUBE_LOCALIZATION_DIR')) {
@@ -40,7 +40,7 @@ if (!defined('RCUBE_LOCALIZATION_DIR'))
 }
 
 define('RCUBE_INSTALL_PATH', INSTALL_PATH);
-define('RCUBE_CONFIG_DIR',  RCMAIL_CONFIG_DIR.'/');
+define('RCUBE_CONFIG_DIR', '/etc/roundcubemail/');
 
 // Show basic error message on fatal PHP error
 register_shutdown_function('rcmail_error_handler');
diff -up ./program/lib/Roundcube/bootstrap.php.rpm ./program/lib/Roundcube/bootstrap.php
--- ./program/lib/Roundcube/bootstrap.php.rpm	2022-03-06 21:32:09.000000000 +0100
+++ ./program/lib/Roundcube/bootstrap.php	2022-03-07 11:48:41.252956405 +0100
@@ -71,7 +71,7 @@ if (!defined('RCUBE_INSTALL_PATH')) {
 }
 
 if (!defined('RCUBE_CONFIG_DIR')) {
-    define('RCUBE_CONFIG_DIR', RCUBE_INSTALL_PATH . 'config/');
+    define('RCUBE_CONFIG_DIR', '/etc/roundcubemail/');
 }
 
 if (!defined('RCUBE_PLUGINS_DIR')) {