diff options
author | alecpl <alec@alec.pl> | 2010-11-03 08:29:27 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-03 08:29:27 +0000 |
commit | f75f65ce47d62f0efbe52b4520030c73727d4c7e (patch) | |
tree | 096a212df0647815edf4c65bfde3a22baadfee2b /program | |
parent | eeb85f425760028fd87515f6c7a186ab100283ec (diff) |
- Added option imap_force_lsub for some buggy LIST-EXTENDED implementations (#1486225)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_imap.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 473e914b9..3d04937fc 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -2827,7 +2827,9 @@ class rcube_imap } else { // Server supports LIST-EXTENDED, we can use selection options - if ($this->get_capability('LIST-EXTENDED')) { + $config = rcmail::get_instance()->config; + // #1486225: Some dovecot versions returns wrong result using LIST-EXTENDED + if (!$config->get('imap_force_lsub') && $this->get_capability('LIST-EXTENDED')) { // This will also set mailbox options, LSUB doesn't do that $a_folders = $this->conn->listMailboxes($this->mod_mailbox($root), $filter, NULL, array('SUBSCRIBED')); |