summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-12-08 14:24:53 +0000
committeralecpl <alec@alec.pl>2010-12-08 14:24:53 +0000
commit4064452816e7e94b7a6dbc7b02cfc56d725408b2 (patch)
tree5fa1e5f2c69c74fa9793c8ecdcff5cdbb9060568
parent90f81a6c8de5aecfa36c54cc5260d25ba883aa51 (diff)
- Fix handling of untagged responses for AUTHENTICATE command (#1487450)
-rw-r--r--CHANGELOG1
-rw-r--r--program/include/rcube_imap_generic.php11
2 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 70b00a7e9..1ce37f2b8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -18,6 +18,7 @@ CHANGELOG Roundcube Webmail
- Improve performance of folder rename and delete actions
- Better support for READ-ONLY and NOPERM responses handling (#1487083)
- Add confirmation message on purge/expunge command response
+- Fix handling of untagged responses for AUTHENTICATE command (#1487450)
RELEASE 0.5-BETA
----------------
diff --git a/program/include/rcube_imap_generic.php b/program/include/rcube_imap_generic.php
index b2346ba13..e72135328 100644
--- a/program/include/rcube_imap_generic.php
+++ b/program/include/rcube_imap_generic.php
@@ -282,7 +282,6 @@ class rcube_imap_generic
return $data;
}
- // don't use it in loops, until you exactly know what you're doing
function readReply(&$untagged=null)
{
do {
@@ -421,7 +420,7 @@ class rcube_imap_generic
}
$this->putLine($this->nextTag() . " AUTHENTICATE $type");
- $line = trim($this->readLine(1024));
+ $line = trim($this->readReply());
if ($line[0] == '+') {
$challenge = substr($line, 2);
@@ -471,7 +470,7 @@ class rcube_imap_generic
// send result
$this->putLine($reply);
- $line = $this->readLine(1024);
+ $line = trim($this->readReply());
if ($line[0] == '+') {
$challenge = substr($line, 2);
@@ -491,7 +490,7 @@ class rcube_imap_generic
$this->putLine('');
}
- $line = $this->readLine(1024);
+ $line = $this->readReply();
$result = $this->parseResult($line);
}
else { // PLAIN
@@ -513,7 +512,7 @@ class rcube_imap_generic
}
else {
$this->putLine($this->nextTag() . " AUTHENTICATE PLAIN");
- $line = trim($this->readLine(1024));
+ $line = trim($this->readReply());
if ($line[0] != '+') {
return $this->parseResult($line);
@@ -521,7 +520,7 @@ class rcube_imap_generic
// send result, get reply and process it
$this->putLine($reply);
- $line = $this->readLine(1024);
+ $line = $this->readReply();
$result = $this->parseResult($line);
}
}