diff options
author | alecpl <alec@alec.pl> | 2010-11-09 07:54:34 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-09 07:54:34 +0000 |
commit | 00290a603237e719cc4ec3db65e6661ba7d46a51 (patch) | |
tree | 0bec07097fcbcacb3d6761dbb75c03d96845d3c6 /program/include/rcmail.php | |
parent | ec211b759241d9e1bbd21fad502e023c90719d9e (diff) |
- Add support for shared folders (#1403507)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index c7ba41935..8fa9df72f 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -503,8 +503,6 @@ class rcmail 'auth_method' => $this->config->get('imap_auth_type', 'check'), 'auth_cid' => $this->config->get('imap_auth_cid'), 'auth_pw' => $this->config->get('imap_auth_pw'), - 'delimiter' => isset($_SESSION['imap_delimiter']) ? $_SESSION['imap_delimiter'] : $this->config->get('imap_delimiter'), - 'rootdir' => isset($_SESSION['imap_root']) ? $_SESSION['imap_root'] : $this->config->get('imap_root'), 'debug_mode' => (bool) $this->config->get('imap_debug', 0), 'force_caps' => (bool) $this->config->get('imap_force_caps'), 'timeout' => (int) $this->config->get('imap_timeout', 0), @@ -790,10 +788,6 @@ class rcmail if (isset($_SESSION['page'])) { $this->imap->set_page($_SESSION['page']); } - - // cache IMAP root and delimiter in session for performance reasons - $_SESSION['imap_root'] = $this->imap->root_dir; - $_SESSION['imap_delimiter'] = $this->imap->delimiter; } |