| | |
| | | // '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 |
| | |
| | | // 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; |
| | | |
| | | // check client IP in session authorization |
| | | $config['ip_check'] = false; |
| | |
| | | // Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode |
| | | $config['addressbook_search_mode'] = 0; |
| | | |
| | | // List of fields used on contacts list and for autocompletion searches |
| | | // Warning: These are field names not LDAP attributes (see 'fieldmap' setting)! |
| | | $config['contactlist_fields'] = array('name', 'firstname', 'surname', 'email'); |
| | | |
| | | // Template of contact entry on the autocompletion list. |
| | | // You can use contact fields as: name, email, organization, department, etc. |
| | | // See program/steps/addressbook/func.inc for a list |
| | |
| | | // 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; |
| | | |