diff options
author | David Carter <dpc22@cam.ac.uk> | 2013-05-29 07:45:22 +0100 |
---|---|---|
committer | David Carter <dpc22@magenta.csi.cam.ac.uk> | 2013-05-29 07:51:44 +0100 |
commit | 52deb18d9646116114f9649c87ffc4f0bc378db1 (patch) | |
tree | a05582ea283cf003378ee7d6081a0f364389fff5 /config/main.inc.php.dist | |
parent | b91bc101a0a3c8227b225ce557954f6a1e654ed3 (diff) |
Add show_actual_foldernames preference and configuration option.
When enabled this setting shows actual folder names rather than
the localised verions for the four default folders:
$rcmail_config['default_folders'] =
array('INBOX', 'Drafts', 'sent-mail', 'spam', 'Trash');
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 4a73ff119..168702611 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -469,6 +469,9 @@ $rcmail_config['trash_mbox'] = 'Trash'; // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) $rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); +// Disable localization of the four default folder names listed above +$rcmail_config['show_actual_foldernames'] = false; + // automatically create the above listed default folders on first login $rcmail_config['create_default_folders'] = false; |