| | |
| | | // Example: '/^[a-z0-9_@.-]+$/' |
| | | $config['login_username_filter'] = null; |
| | | |
| | | // Brute-force attacks prevention. |
| | | // The value specifies maximum number of failed logon attempts per minute. |
| | | $config['login_rate_limit'] = 3; |
| | | |
| | | // Includes should be interpreted as PHP files |
| | | $config['skin_include_php'] = false; |
| | | |
| | |
| | | // For example %n = mail.domain.tld, %t = domain.tld |
| | | $config['mail_domain'] = ''; |
| | | |
| | | // Password charset. |
| | | // Use it if your authentication backend doesn't support UTF-8. |
| | | // Defaults to ISO-8859-1 for backward compatibility |
| | | // Password character set. |
| | | // If your authentication backend supports it, use "UTF-8". |
| | | // Otherwise, use the appropriate character set. |
| | | // Defaults to ISO-8859-1 for backward compatibility. |
| | | $config['password_charset'] = 'ISO-8859-1'; |
| | | |
| | | // How many seconds must pass between emails sent by a user |
| | |
| | | // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) |
| | | $config['trash_mbox'] = 'Trash'; |
| | | |
| | | // automatically create the above listed default folders on first login |
| | | // automatically create the above listed default folders on user login |
| | | $config['create_default_folders'] = false; |
| | | |
| | | // protect the default folders from renames, deletes, and subscription changes |
| | |
| | | // 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 |