| | |
| | | // display these folders separately in the mailbox list. |
| | | // these folders will also be displayed with localized names |
| | | // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) |
| | | $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
| | | $rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
| | | |
| | | // automatically create the above listed default folders on first login |
| | | $rcmail_config['create_default_folders'] = false; |
| | |
| | | // -> in this case, assure that groups and contacts are separated due to the concernig filters! |
| | | 'groups' => array( |
| | | 'base_dn' => '', |
| | | 'scope' => 'sub', // search mode: sub|base|list |
| | | 'filter' => '(objectClass=groupOfNames)', |
| | | 'object_classes' => array("top", "groupOfNames"), |
| | | 'member_attr' => 'member', // name of the member attribute, e.g. uniqueMember |
| | |
| | | |
| | | // sort contacts by this col (preferably either one of name, firstname, surname) |
| | | $rcmail_config['addressbook_sort_col'] = 'surname'; |
| | | |
| | | // the way how contact names are displayed in the list |
| | | // 0: display name |
| | | // 1: (prefix) firstname middlename surname (suffix) |
| | | // 2: (prefix) surname firstname middlename (suffix) |
| | | // 3: (prefix) surname, firstname middlename (suffix) |
| | | $rcmail_config['addressbook_name_listing'] = 0; |
| | | |
| | | // use this timezone to display date/time |
| | | // valid timezone identifers are listed here: php.net/manual/en/timezones.php |
| | |
| | | // Defaults of the search field configuration. |
| | | // The array can contain a per-folder list of header fields which should be considered when searching |
| | | // The entry with key '*' stands for all folders which do not have a specific list set. |
| | | // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders'] |
| | | // Please note that folder names should to be in sync with $rcmail_config['default_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. |