| | |
| | | // set to false if only registered users can use this service |
| | | $rcmail_config['auto_create_user'] = true; |
| | | |
| | | // provide an URL where a user can get support for this Roundcube installation |
| | | // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! |
| | | $rcmail_config['support_url'] = ''; |
| | | |
| | | // replace Roundcube logo with this image |
| | | // specify an URL relative to the document root of this Roundcube installation |
| | | $rcmail_config['skin_logo'] = null; |
| | |
| | | |
| | | // session domain: .example.org |
| | | $rcmail_config['session_domain'] = ''; |
| | | |
| | | // session name. Default: 'roundcube_sessid' |
| | | $rcmail_config['session_name'] = null; |
| | | |
| | | // Backend to use for session storage. Can either be 'db' (default) or 'memcache' |
| | | // If set to memcache, a list of servers need to be specified in 'memcache_hosts' |
| | |
| | | // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) |
| | | $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
| | | |
| | | // automatically create the above listed default folders on login |
| | | // automatically create the above listed default folders on first login |
| | | $rcmail_config['create_default_folders'] = false; |
| | | |
| | | // protect the default folders from renames, deletes, and subscription changes |
| | |
| | | // available placeholders: {street}, {locality}, {zipcode}, {country}, {region} |
| | | $rcmail_config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}'; |
| | | |
| | | // Matching mode for addressbook search (including autocompletion) |
| | | // 0 - partial (*abc*), default |
| | | // 1 - strict (abc) |
| | | // 2 - prefix (abc*) |
| | | // Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode |
| | | $rcmail_config['addressbook_search_mode'] = 0; |
| | | |
| | | // ---------------------------------- |
| | | // USER PREFERENCES |
| | | // ---------------------------------- |
| | |
| | | // Enables spell checking before sending a message. |
| | | $rcmail_config['spellcheck_before_send'] = false; |
| | | |
| | | // Skip alternative email addresses in autocompletion (show one address per contact) |
| | | $rcmail_config['autocomplete_single'] = false; |
| | | |
| | | // end of config file |