Fix PLAIN authentication for some IMAP servers (#1488674)

pull/26/head
Aleksander Machniak 14 years ago
parent 8f66aa06f5
commit 4e383e2ec8

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix PLAIN authentication for some IMAP servers (#1488674)
- Fix encoding vCard file when contains PHOTO;ENCODING=b (#1488683)
- Fix focus issue in IE when selecting message row (#1488620)
- Remove (too big) min-width on mail screen

@ -530,6 +530,7 @@ class rcube_imap_generic
}
else {
$authc = $user;
$user = '';
}
$auth_sasl = Auth_SASL::factory('digestmd5');
$reply = base64_encode($auth_sasl->getResponse($authc, $pass,
@ -568,6 +569,7 @@ class rcube_imap_generic
}
else {
$authc = $user;
$user = '';
}
$reply = base64_encode($user . chr(0) . $authc . chr(0) . $pass);

Loading…
Cancel
Save