| | |
| | | // 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; |
| | |
| | | // 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. |