diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-11 08:30:00 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-11 08:30:00 +0000 |
| commit | 024f753620ae9fcca3a5d7a085a6c314674752e9 (patch) | |
| tree | dfabfa9df6682b30ee2d139a0845f0831a0ceb03 /roundcubemail/config | |
| parent | 51e2e98463ccebbe24d5195f3fff544e4221cac1 (diff) | |
- Performance: allow setting imap rootdir and delimiter before connect (#1485172)
git-svn-id: https://svn.roundcube.net/trunk@2143 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index e78b91ee0..8b4fbadf2 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -61,6 +61,12 @@ $rcmail_config['default_port'] = 143; // Optional, defaults to "check" $rcmail_config['imap_auth_type'] = null; +// If you know your imap's root directory and its folder delimiter, +// you can specify them here. Otherwise they will be determined +// during every imap connection. +$rcmail_config['imap_root'] = null; +$rcmail_config['imap_delimiter'] = null; + // Automatically add this domain to user names for login // Only for IMAP servers that require full e-mail addresses for login // Specify an array with 'host' => 'domain' values to support multiple hosts @@ -152,9 +158,6 @@ $rcmail_config['useragent'] = 'RoundCube Webmail/0.2-beta'; // use this name to compose page titles $rcmail_config['product_name'] = 'RoundCube Webmail'; -// only list folders within this path -$rcmail_config['imap_root'] = ''; - // store draft message is this mailbox // leave blank if draft messages should not be stored $rcmail_config['drafts_mbox'] = 'Drafts'; |
