Changeset 4064452 in github
- Timestamp:
- Dec 8, 2010 9:24:53 AM (2 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- ad399a9
- Parents:
- 90f81a6
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap_generic.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r90f81a6 r4064452 19 19 - Better support for READ-ONLY and NOPERM responses handling (#1487083) 20 20 - Add confirmation message on purge/expunge command response 21 - Fix handling of untagged responses for AUTHENTICATE command (#1487450) 21 22 22 23 RELEASE 0.5-BETA -
program/include/rcube_imap_generic.php
r90f81a6 r4064452 283 283 } 284 284 285 // don't use it in loops, until you exactly know what you're doing286 285 function readReply(&$untagged=null) 287 286 { … … 422 421 423 422 $this->putLine($this->nextTag() . " AUTHENTICATE $type"); 424 $line = trim($this->read Line(1024));423 $line = trim($this->readReply()); 425 424 426 425 if ($line[0] == '+') { … … 472 471 // send result 473 472 $this->putLine($reply); 474 $line = $this->readLine(1024);473 $line = trim($this->readReply()); 475 474 476 475 if ($line[0] == '+') { … … 492 491 } 493 492 494 $line = $this->read Line(1024);493 $line = $this->readReply(); 495 494 $result = $this->parseResult($line); 496 495 } … … 514 513 else { 515 514 $this->putLine($this->nextTag() . " AUTHENTICATE PLAIN"); 516 $line = trim($this->read Line(1024));515 $line = trim($this->readReply()); 517 516 518 517 if ($line[0] != '+') { … … 522 521 // send result, get reply and process it 523 522 $this->putLine($reply); 524 $line = $this->read Line(1024);523 $line = $this->readReply(); 525 524 $result = $this->parseResult($line); 526 525 }
Note: See TracChangeset
for help on using the changeset viewer.
