"/images/logo_login_small.png", // show the image /images/logo_login.png for the Login screen in the Elastic skin "elastic:login" => "/images/logo_login.png", // show the image /images/logo_small.png in the Elastic skin "elastic:*[small]" => "/images/logo_small.png", // show the image /images/larry.png in the Larry skin "larry:*" => "/images/larry.png", // show the image /images/logo_login.png on the login template in all skins "login" => "/images/logo_login.png", // show the image /images/logo_print.png for all print type logos in all skins "[print]" => "/images/logo_print.png", ); */ $config['skin_logo'] = '{{ roundcube_skin_logo }}'; // automatically create a new Roundcube user when log-in the first time. // a new user will be created once the IMAP login succeeds. // set to false if only registered users can use this service $config['auto_create_user'] = true; // Enables possibility to log in using email address from user identities $config['user_aliases'] = false; // use this folder to store log files // must be writeable for the user who runs PHP process (Apache user if mod_php is being used) // This is used by the 'file' log driver. $config['log_dir'] = '{{ roundcube_logs_dir }}/'; // use this folder to store temp files // must be writeable for the user who runs PHP process (Apache user if mod_php is being used) $config['temp_dir'] = '{{ roundcube_temp_dir }}/'; // expire files in temp_dir after 48 hours // possible units: s, m, h, d, w $config['temp_dir_ttl'] = '48h'; // Enforce connections over https // With this option enabled, all non-secure connections will be redirected. // It can be also a port number, hostname or hostname:port if they are // different than default HTTP_HOST:443 $config['force_https'] = {{ roundcube_force_https_connection }}; // tell PHP that it should work as under secure connection // even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set) // e.g. when you're running Roundcube behind a https proxy // this option is mutually exclusive to 'force_https' and only either one of them should be set to true. $config['use_https'] = false; // Allow browser-autocompletion on login form. // 0 - disabled, 1 - username and host only, 2 - username, host, password $config['login_autocomplete'] = {{ roundcube_login_autocomplete }}; // Forces conversion of logins to lower case. // 0 - disabled, 1 - only domain part, 2 - domain and local part. // If users authentication is case-insensitive this must be enabled. // Note: After enabling it all user records need to be updated, e.g. with query: // UPDATE users SET username = LOWER(username); $config['login_lc'] = {{ roundcube_login_lc }}; $config['display_product_info'] = 0; {% if roundcube_use_memcache %} $config['session_storage'] = 'memcache'; {% elif roundcube_use_redis %} $config['session_storage'] = 'redis'; {% else %} $config['session_storage'] = 'db'; {% endif %} {% if haproxy_ips is defined %} $config['proxy_whitelist'] = array({% for h in haproxy_ips %}'{{ h }}'{% if not loop.last %}, {% endif %} {% endfor %}); {% endif %} $config['mail_domain'] = '{{ roundcube_domain_name }}'; $config['http_received_header_encrypt'] = {{ roundcube_http_received_header_encrypt }}; $config['identities_level'] = {{ roundcube_identities_level }}; $config['create_default_folders'] = true; $config['show_real_foldernames'] = true; $config['enable_spellcheck'] = {{ roundcube_enable_spellcheck }}; $config['show_images'] = {{ roundcube_show_images }}; $config['htmleditor'] = {{ roundcube_html_editor }}; {% if roundcube_managesieve_config %} // managesieve server port $rcmail_config['managesieve_port'] = {{ roundcube_managesieve_port }}; $config['managesieve_auth_type'] = '{{ roundcube_managesieve_auth }}'; $rcmail_config['managesieve_host'] = '{{ roundcube_managesieve_host }}'; $rcmail_config['managesieve_usetls'] = {{ roundcube_managesieve_tls }}; $config['managesieve_debug'] = {{ roundcube_managesieve_debug }}; $config['managesieve_vacation'] = {{ roundcube_managesieve_vacation }}; $config['managesieve_forward'] = {{ roundcube_managesieve_forward }}; {% endif %}