diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-24 11:55:55 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-24 11:55:55 +0000 |
| commit | 3ac8a69a485ef63ed7946399153d6209f0468ead (patch) | |
| tree | 0ba5743b1b73b105615c4a54fc9cb5b501870690 /roundcubemail/program/include | |
| parent | 870a3e7d42455f8747663c6026301b3644d8c55d (diff) | |
- Temporarily commented out \Noselect flag checking in select(), because of problems with Courier
git-svn-id: https://svn.roundcube.net/trunk@4256 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap_generic.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap_generic.php b/roundcubemail/program/include/rcube_imap_generic.php index 8ee17c2ee..2cffd00f4 100644 --- a/roundcubemail/program/include/rcube_imap_generic.php +++ b/roundcubemail/program/include/rcube_imap_generic.php @@ -808,13 +808,16 @@ class rcube_imap_generic if ($this->selected == $mailbox) { return true; } +/* + Temporary commented out because Courier returns \Noselect for INBOX + Requires more investigation if (is_array($this->data['LIST']) && is_array($opts = $this->data['LIST'][$mailbox])) { if (in_array('\\Noselect', $opts)) { return false; } } - +*/ list($code, $response) = $this->execute('SELECT', array($this->escape($mailbox))); if ($code == self::ERROR_OK) { |
