| | |
| | | |
| | | // In order to enable public ldap search, configure an array like the Verisign |
| | | // example further below. if you would like to test, simply uncomment the example. |
| | | // Array key must contain only safe characters, ie. a-zA-Z0-9_ |
| | | $rcmail_config['ldap_public'] = array(); |
| | | |
| | | // If you are going to use LDAP for individual address books, you will need to |
| | |
| | | 'scope' => 'sub', // search mode: sub|base|list |
| | | 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act |
| | | 'fuzzy_search' => true, // server allows wildcard search |
| | | 'vlv' => false, // Enable Virtual List View to mor efficiently fetch paginated data (if server supports it) |
| | | 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit. |
| | | 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit. |
| | | |
| | |
| | | // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders'] |
| | | $rcmail_config['search_mods'] = null; // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1)); |
| | | |
| | | // Defaults of the addressbook search field configuration. |
| | | $rcmail_config['addressbook_search_mods'] = null; // Example: array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1); |
| | | |
| | | // 'Delete always' |
| | | // This setting reflects if mail should be always deleted |
| | | // when moving to Trash fails. This is necessary in some setups |
| | |
| | | // Note: Use '0' for built-in address book. |
| | | $rcmail_config['default_addressbook'] = null; |
| | | |
| | | // Enables spell checking before sending a message. |
| | | $rcmail_config['spellcheck_before_send'] = false; |
| | | |
| | | // end of config file |