- Temporarily commented out \Noselect flag checking in select(), because of problems with Courier

release-0.6
alecpl 14 years ago
parent d1a9885f21
commit 576b330ebd

@ -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) {

Loading…
Cancel
Save