File default-configuration.patch of Package roundcubemail-selfcontained (Revision 9cb0a04f79ab7ce7c36cb95f38a2c424)
Currently displaying revision 9cb0a04f79ab7ce7c36cb95f38a2c424 , Show latest
45
1
diff -ur roundcubemail-1.4.11.18/config/defaults.inc.php roundcubemail-1.4.11.18.default-configuration/config/defaults.inc.php
2
--- roundcubemail-1.4.11.18/config/defaults.inc.php 2021-09-01 10:16:03.000000000 +0200
3
+++ roundcubemail-1.4.11.18.default-configuration/config/defaults.inc.php 2021-09-01 11:06:27.948930836 +0200
4
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
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
28
// - 'enchant' - requires the PHP Enchant module
29
// - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
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
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