From: Michael M Slusarz Date: Fri, 9 Jan 2009 22:34:08 +0000 (-0700) Subject: This should fix the hangs when doing a basic AUTHENTICATE PLAIN X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=fe0947961967b0f607afd8dd711c2759df6800fb;p=horde.git This should fix the hangs when doing a basic AUTHENTICATE PLAIN --- diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php index c276dcbac..598d0d6a8 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php @@ -532,7 +532,7 @@ class Horde_Imap_Client_Socket extends Horde_Imap_Client_Base // IMAP Extension for SASL Initial Client Response (RFC 4959) $this->_sendLine('AUTHENTICATE PLAIN ' . $auth, array('debug' => '[SASL-IR AUTHENTICATE Command]')); } else { - $this->_sendLine('AUTHENTICATE PLAIN'); + $this->_sendLine('AUTHENTICATE PLAIN', array('noparse' => true)); $this->_sendLine($auth, array('debug' => '[AUTHENTICATE Command]', 'notag' => true)); } break;