Skip to content
Snippets Groups Projects
Commit 12691706 authored by ale's avatar ale
Browse files

Roundcube config updates for 1.4.0

Sets the default skin to Elastic, and points MIME magic files at the
correct system-wide locations.
parent 5bb6e8f2
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ $config['des_key'] = '{{ roundcube_secret }}'; ...@@ -95,7 +95,7 @@ $config['des_key'] = '{{ roundcube_secret }}';
//$config['cipher_method'] = 'AES-256-CBC'; //$config['cipher_method'] = 'AES-256-CBC';
// skin name: folder from skins/ // skin name: folder from skins/
$config['skin'] = 'larry'; $config['skin'] = 'elastic';
$config['skin_logo'] = '/images/r_logo.png'; $config['skin_logo'] = '/images/r_logo.png';
// Session cookie settings. // Session cookie settings.
...@@ -110,6 +110,10 @@ $config['password_charset'] = 'UTF-8'; ...@@ -110,6 +110,10 @@ $config['password_charset'] = 'UTF-8';
// Use this charset as fallback for message decoding // Use this charset as fallback for message decoding
$config['default_charset'] = 'UTF-8'; $config['default_charset'] = 'UTF-8';
// Use the system-wide mime.types and magic files.
$config['mime_magic'] = '/etc/apache2/magic';
$config['mime_types'] = '/etc/mime.types';
// Do not leak the Roundcube version. // Do not leak the Roundcube version.
$config['useragent'] = 'Roundcube Webmail'; $config['useragent'] = 'Roundcube Webmail';
...@@ -167,3 +171,5 @@ $config['prefer_html'] = false; ...@@ -167,3 +171,5 @@ $config['prefer_html'] = false;
$config['logout_purge'] = true; $config['logout_purge'] = true;
$config['logout_expunge'] = true; $config['logout_expunge'] = true;
// Reply-all goes to list if mailing list is detected.
$config['reply_all_mode'] = 1;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment