| | |
| | | // 'cache_messages' => 'r', |
| | | ); |
| | | |
| | | // It is possible to specify database variable values e.g. some limits here. |
| | | // Use them if your server is not MySQL or for better performance. |
| | | // For example Roundcube uses max_allowed_packet value (in bytes) |
| | | // which limits query size for database cache operations. |
| | | $config['db_max_allowed_packet'] = null; |
| | | |
| | | |
| | | // ---------------------------------- |
| | | // LOGGING/DEBUGGING |
| | |
| | | |
| | | // Log SMTP conversation to <log_dir>/smtp or to syslog |
| | | $config['smtp_debug'] = false; |
| | | |
| | | // Log Memcache conversation to <log_dir>/memcache or to syslog |
| | | $config['memcache_debug'] = false; |
| | | |
| | | // Log APC conversation to <log_dir>/apc or to syslog |
| | | $config['apc_debug'] = false; |
| | | |
| | | |
| | | // ---------------------------------- |
| | | // IMAP |
| | |
| | | // 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 apache user) |
| | | // 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'] = RCUBE_INSTALL_PATH . 'logs/'; |
| | | |
| | | // use this folder to store temp files (must be writeable for apache user) |
| | | // 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'] = RCUBE_INSTALL_PATH . 'temp/'; |
| | | |
| | | // expire files in temp_dir after 48 hours |
| | |
| | | // Session path. Defaults to PHP session.cookie_path setting. |
| | | $config['session_path'] = null; |
| | | |
| | | // Backend to use for session storage. Can either be 'db' (default), 'memcache' or 'php' |
| | | // Backend to use for session storage. Can either be 'db' (default), 'redis', 'memcache', or 'php' |
| | | // |
| | | // If set to 'memcache', a list of servers need to be specified in 'memcache_hosts' |
| | | // Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed |
| | | // |
| | | // If set to 'redis', a server needs to be specified in 'redis_hosts' |
| | | // Make sure the Redis extension (http://pecl.php.net/package/redis) version >= 2.0.0 is installed |
| | | // |
| | | // Setting this value to 'php' will use the default session save handler configured in PHP |
| | | $config['session_storage'] = 'db'; |
| | | |
| | | // Use these hosts for accessing memcached |
| | | // Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file |
| | | $config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock' ); |
| | | |
| | | // Controls the use of a persistent connections to memcache servers |
| | | // See http://php.net/manual/en/memcache.addserver.php |
| | | $config['memcache_pconnect'] = true; |
| | | |
| | | // Value in seconds which will be used for connecting to the daemon |
| | | // See http://php.net/manual/en/memcache.addserver.php |
| | | $config['memcache_timeout'] = 1; |
| | | |
| | | // Controls how often a failed server will be retried (value in seconds). |
| | | // Setting this parameter to -1 disables automatic retry. |
| | | // See http://php.net/manual/en/memcache.addserver.php |
| | | $config['memcache_retry_interval'] = 15; |
| | | |
| | | // use this for accessing redis |
| | | // currently only one host is supported. cluster support may come in a future release. |
| | | // you can pass 4 fields, host, port, database and password. |
| | | // unset fields will be set to the default values host=127.0.0.1, port=6379, database=0, password= (empty) |
| | | |
| | | $config['redis_hosts'] = null; // e.g. array( 'localhost:6379' ); array( '192.168.1.1:6379:1:secret' ); |
| | | |
| | | // check client IP in session authorization |
| | | $config['ip_check'] = false; |
| | |
| | | // Note: useful when SMTP server stores sent mail in user mailbox |
| | | $config['no_save_sent_messages'] = false; |
| | | |
| | | // Improve system security by using special URL with security token. |
| | | // This can be set to a number defining token length. Default: 16. |
| | | // Warning: This requires http server configuration. Sample: |
| | | // RewriteRule ^/roundcubemail/[a-f0-9]{16}/(.*) /roundcubemail/$1 [PT] |
| | | // Alias /roundcubemail /var/www/roundcubemail/ |
| | | // Note: Use assets_path to not prevent the browser from caching assets |
| | | $config['use_secure_urls'] = false; |
| | | |
| | | // Allows to define separate server/path for image/js/css files |
| | | // Warning: If the domain is different cross-domain access to some |
| | | // resources need to be allowed |
| | | // Sample: |
| | | // <FilesMatch ".(eot|ttf|woff)"> |
| | | // Header set Access-Control-Allow-Origin "*" |
| | | // </FilesMatch> |
| | | $config['assets_path'] = ''; |
| | | |
| | | // While assets_path is for the browser, assets_dir informs |
| | | // PHP code about the location of asset files in filesystem |
| | | $config['assets_dir'] = ''; |
| | | |
| | | |
| | | // ---------------------------------- |
| | | // PLUGINS |
| | | // ---------------------------------- |
| | |
| | | $config['spellcheck_dictionary'] = false; |
| | | |
| | | // Set the spell checking engine. Possible values: |
| | | // - 'googie' - the default |
| | | // - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting) |
| | | // - 'pspell' - requires the PHP Pspell module and aspell installed |
| | | // - 'enchant' - requires the PHP Enchant module |
| | | // - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API |
| | | // Since Google shut down their public spell checking service, you need to |
| | | // connect to a Nox Spell Server when using 'googie' here. Therefore specify the 'spellcheck_uri' |
| | | // Since Google shut down their public spell checking service, the default settings |
| | | // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube. |
| | | // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly. |
| | | $config['spellcheck_engine'] = 'googie'; |
| | | |
| | | // For locally installed Nox Spell Server or After the Deadline services, |
| | |
| | | |
| | | // Use this char/string to separate recipients when composing a new message |
| | | $config['recipients_separator'] = ','; |
| | | |
| | | // Number of lines at the end of a message considered to contain the signature. |
| | | // Increase this value if signatures are not properly detected and colored |
| | | $config['sig_max_lines'] = 15; |
| | | |
| | | // don't let users set pagesize to more than this value if set |
| | | $config['max_pagesize'] = 200; |
| | |
| | | // DN and password to bind as before searching for bind DN, if anonymous search is not allowed |
| | | 'search_bind_dn' => '', |
| | | 'search_bind_pw' => '', |
| | | // Base DN and filter used for resolving the user's domain root DN which feeds the %dc variables |
| | | // Leave empty to skip this lookup and derive the root DN from the username domain |
| | | 'domain_base_dn' => '', |
| | | 'domain_filter' => '', |
| | | // Optional map of replacement strings => attributes used when binding for an individual address book |
| | | 'search_bind_attrib' => array(), // e.g. array('%udc' => 'ou') |
| | | // Default for %dn variable if search doesn't return DN value |
| | |
| | | // 3 - Forwards and Replies only |
| | | $config['show_sig'] = 1; |
| | | |
| | | // By default the signature is placed depending on cursor position (reply_mode). |
| | | // Sometimes it might be convenient to start the reply on top but keep |
| | | // the signature below the quoted text (sig_below = true). |
| | | $config['sig_below'] = false; |
| | | |
| | | // Use MIME encoding (quoted-printable) for 8bit characters in message body |
| | | $config['force_7bit'] = false; |
| | | |