File default-configuration.patch of Package roundcubemail (Revision 300c53eae03ea9d07d712b0a70ff79f4)

Currently displaying revision 300c53eae03ea9d07d712b0a70ff79f4 , Show latest

46
 
1
diff -ur roundcubemail-1.4-beta136.orig/config/defaults.inc.php roundcubemail-1.4-beta136/config/defaults.inc.php
2
--- roundcubemail-1.4-beta136.orig/config/defaults.inc.php  2018-11-22 13:44:49.000000000 +0100
3
+++ roundcubemail-1.4-beta136/config/defaults.inc.php   2018-11-22 13:55:51.873258023 +0100
4
@@ -656,7 +656,7 @@
5
 //    RewriteRule ^/roundcubemail/[a-zA-Z0-9]{16}/(.*) /roundcubemail/$1 [PT]
6
 //    Alias /roundcubemail /var/www/roundcubemail/
7
 // Note: Use assets_path to not prevent the browser from caching assets
8
-$config['use_secure_urls'] = false;
9
+$config['use_secure_urls'] = true;
10
 
11
 // Allows to define separate server/path for image/js/css files
12
 // Warning: If the domain is different cross-domain access to some
13
@@ -665,11 +665,11 @@
14
 //    <FilesMatch ".(eot|ttf|woff)">
15
 //    Header set Access-Control-Allow-Origin "*"
16
 //    </FilesMatch>
17
-$config['assets_path'] = '';
18
+$config['assets_path'] = '/roundcubemail/assets/';
19
 
20
 // While assets_path is for the browser, assets_dir informs
21
 // PHP code about the location of asset files in filesystem
22
-$config['assets_dir'] = '';
23
+$config['assets_dir'] = '/usr/share/roundcubemail/public_html/assets/';
24
 
25
 
26
 // ----------------------------------
27
@@ -763,7 +763,7 @@
28
 // Since Google shut down their public spell checking service, the default settings
29
 // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
30
 // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
31
-$config['spellcheck_engine'] = 'googie';
32
+$config['spellcheck_engine'] = 'pspell';
33
 
34
 // For locally installed Nox Spell Server or After the Deadline services,
35
 // please specify the URI to call it.
36
@@ -1164,7 +1164,7 @@
37
 $config['display_next'] = true;
38
 
39
 // Default messages listing mode. One of 'threads' or 'list'.
40
-$config['default_list_mode'] = 'list';
41
+$config['default_list_mode'] = 'threads';
42
 
43
 // 0 - Do not expand threads
44
 // 1 - Expand all threads automatically
45
Only in roundcubemail-1.4-beta136/config: defaults.inc.php.orig
46