From d402e33e0f948470d6ca5695ff49f60996070e24 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 13 Apr 2001 22:49:22 +0000 Subject: [PATCH] fixed bug with authenticated smtp git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1228 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/smtp.php b/functions/smtp.php index 87580db5..99fc019a 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -345,7 +345,7 @@ $cc_list = getLineOfAddrs($cc); /** Lets introduce ourselves */ - if (! isset ($use_authenticated_smtp) && $use_authenticated_smtp == true) { + if (! isset ($use_authenticated_smtp) || $use_authenticated_smtp == false) { fputs($smtpConnection, "HELO $domain\r\n"); $tmp = fgets($smtpConnection, 1024); errorCheck($tmp, $smtpConnection); -- 2.25.1