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

Currently displaying revision d2df617273f1848dcca60a83feb0adfa , Show latest

55
 
1
diff -ur roundcubemail-1.3.0.orig/config/defaults.inc.php roundcubemail-1.3.0/config/defaults.inc.php
2
--- roundcubemail-1.3.0.orig/config/defaults.inc.php    2017-06-26 20:51:51.000000000 +0200
3
+++ roundcubemail-1.3.0/config/defaults.inc.php 2017-07-01 11:36:21.094364159 +0200
4
@@ -514,7 +514,7 @@
5
 // If your authentication backend supports it, use "UTF-8".
6
 // Otherwise, use the appropriate character set.
7
 // Defaults to ISO-8859-1 for backward compatibility.
8
-$config['password_charset'] = 'ISO-8859-1';
9
+$config['password_charset'] = 'UTF-8';
10
 
11
 // How many seconds must pass between emails sent by a user
12
 $config['sendmail_delay'] = 0;
13
@@ -630,7 +630,7 @@
14
 //    RewriteRule ^/roundcubemail/[a-zA-Z0-9]{16}/(.*) /roundcubemail/$1 [PT]
15
 //    Alias /roundcubemail /var/www/roundcubemail/
16
 // Note: Use assets_path to not prevent the browser from caching assets
17
-$config['use_secure_urls'] = false;
18
+$config['use_secure_urls'] = true;
19
 
20
 // Allows to define separate server/path for image/js/css files
21
 // Warning: If the domain is different cross-domain access to some
22
@@ -639,11 +639,11 @@
23
 //    <FilesMatch ".(eot|ttf|woff)">
24
 //    Header set Access-Control-Allow-Origin "*"
25
 //    </FilesMatch>
26
-$config['assets_path'] = '';
27
+$config['assets_path'] = '/roundcubemail/assets/';
28
 
29
 // While assets_path is for the browser, assets_dir informs
30
 // PHP code about the location of asset files in filesystem
31
-$config['assets_dir'] = '';
32
+$config['assets_dir'] = '/usr/share/roundcubemail/public_html/assets/';
33
 
34
 
35
 // ----------------------------------
36
@@ -737,7 +737,7 @@
37
 // Since Google shut down their public spell checking service, the default settings
38
 // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
39
 // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
40
-$config['spellcheck_engine'] = 'googie';
41
+$config['spellcheck_engine'] = 'pspell';
42
 
43
 // For locally installed Nox Spell Server or After the Deadline services,
44
 // please specify the URI to call it.
45
@@ -1138,7 +1138,7 @@
46
 $config['display_next'] = true;
47
 
48
 // Default messages listing mode. One of 'threads' or 'list'.
49
-$config['default_list_mode'] = 'list';
50
+$config['default_list_mode'] = 'threads';
51
 
52
 // 0 - Do not expand threads
53
 // 1 - Expand all threads automatically
54
Only in roundcubemail-1.3.0/config: defaults.inc.php.orig
55