diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-09 07:54:34 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-09 07:54:34 +0000 |
| commit | a4e6eeebb0e974c7dfd0cb55bc4cc14b33eb8608 (patch) | |
| tree | 4b6c30c8fbe8566324ac2b3b5e7ca2082b23f46f /roundcubemail/config/main.inc.php.dist | |
| parent | 49102254714eca756a9f9cc95b47419e13eae763 (diff) | |
- Add support for shared folders (#1403507)
git-svn-id: https://svn.roundcube.net/trunk@4198 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config/main.inc.php.dist')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 0d71c44eb..996b2ecdb 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -74,11 +74,17 @@ $rcmail_config['default_port'] = 143; // best server supported one) $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 automatically. -$rcmail_config['imap_root'] = null; +// If you know your imap's folder delimiter, you can specify it here. +// Otherwise it will be determined automatically $rcmail_config['imap_delimiter'] = null; +// If IMAP server doesn't support NAMESPACE extension, but you're +// using shared folders or personal root folder is non-empty, you'll need to +// set these options. All can be strings or arrays of strings. +$rcmail_config['imap_ns_personal'] = null; +$rcmail_config['imap_ns_other'] = null; +$rcmail_config['imap_ns_shared'] = null; + // By default IMAP capabilities are readed after connection to IMAP server // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list // after login. Set to True if you've got this case. |
