|
|
@ -645,6 +645,7 @@ class rcube_imap_generic
|
|
|
|
// RFC3501 [7.1] optional CAPABILITY response
|
|
|
|
// RFC3501 [7.1] optional CAPABILITY response
|
|
|
|
if (preg_match('/\[CAPABILITY ([^]]+)\]/i', $line, $matches)) {
|
|
|
|
if (preg_match('/\[CAPABILITY ([^]]+)\]/i', $line, $matches)) {
|
|
|
|
$this->capability = explode(' ', strtoupper($matches[1]));
|
|
|
|
$this->capability = explode(' ', strtoupper($matches[1]));
|
|
|
|
|
|
|
|
$this->capability_readed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$this->message .= $line;
|
|
|
|
$this->message .= $line;
|
|
|
@ -716,6 +717,7 @@ class rcube_imap_generic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->getNamespace();
|
|
|
|
$this->getNamespace();
|
|
|
|
$this->logged = true;
|
|
|
|
$this->logged = true;
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|