summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-11-09 07:54:34 +0000
committeralecpl <alec@alec.pl>2010-11-09 07:54:34 +0000
commit00290a603237e719cc4ec3db65e6661ba7d46a51 (patch)
tree0bec07097fcbcacb3d6761dbb75c03d96845d3c6 /config
parentec211b759241d9e1bbd21fad502e023c90719d9e (diff)
- Add support for shared folders (#1403507)
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist12
1 files changed, 9 insertions, 3 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 0d71c44eb..996b2ecdb 100644
--- a/config/main.inc.php.dist
+++ b/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.