diff --git a/roles/mail/templates/roundcube/config.inc.php b/roles/mail/templates/roundcube/config.inc.php index d354cc3694523a93a12755cf80f801ebdeab3cee..159b9a7d703afdd1db8a5479f00a66ba68d13d7c 100644 --- a/roles/mail/templates/roundcube/config.inc.php +++ b/roles/mail/templates/roundcube/config.inc.php @@ -95,7 +95,7 @@ $config['des_key'] = '{{ roundcube_secret }}'; //$config['cipher_method'] = 'AES-256-CBC'; // skin name: folder from skins/ -$config['skin'] = 'larry'; +$config['skin'] = 'elastic'; $config['skin_logo'] = '/images/r_logo.png'; // Session cookie settings. @@ -110,6 +110,10 @@ $config['password_charset'] = 'UTF-8'; // Use this charset as fallback for message decoding $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. $config['useragent'] = 'Roundcube Webmail'; @@ -167,3 +171,5 @@ $config['prefer_html'] = false; $config['logout_purge'] = true; $config['logout_expunge'] = true; +// Reply-all goes to list if mailing list is detected. +$config['reply_all_mode'] = 1;