Changeset 587444f in github
- Timestamp:
- Sep 20, 2009 5:09:36 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 67bb96f
- Parents:
- f8dae9f
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/lib/imap.inc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r4d54cfe r587444f 2 2 =========================== 3 3 4 - Fix "Empty startup greeting" bug (#1486085) 4 5 - Fix setting user name in 'new_user_identity' plugin (#1486137) 5 6 - Fix incorrect count of new messages in folder list when using multiple IMAP clients (#1485995) -
program/lib/imap.inc
rb2ee726 r587444f 613 613 } 614 614 615 $conn->fp = fsockopen($host, $ICL_PORT, $errno, $errstr, 10);615 $conn->fp = @fsockopen($host, $ICL_PORT, $errno, $errstr, 10); 616 616 if (!$conn->fp) { 617 617 $iil_error = "Could not connect to $host at port $ICL_PORT: $errstr"; … … 621 621 622 622 stream_set_timeout($conn->fp, 10); 623 $line = stream_get_line($conn->fp, 8192, "\n");623 $line = trim(fgets($conn->fp, 8192)); 624 624 625 625 if ($my_prefs['debug_mode'] && $line) … … 641 641 } 642 642 643 $conn->message .= $line ;643 $conn->message .= $line . "\n"; 644 644 645 645 // TLS connection … … 705 705 } 706 706 707 if ( (!$result)||(strcasecmp($auth, "plain") == 0)) {707 if (!$result || strcasecmp($auth, "plain") == 0) { 708 708 //do plain text auth 709 709 $result = iil_C_Login($conn, $user, $password);
Note: See TracChangeset
for help on using the changeset viewer.
