From fe0947961967b0f607afd8dd711c2759df6800fb Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 9 Jan 2009 15:34:08 -0700 Subject: [PATCH] This should fix the hangs when doing a basic AUTHENTICATE PLAIN --- framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0