소스 검색

fixed bug with authenticated smtp

Luke Ehresman 24 년 전
부모
커밋
ff25cb9ce9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      functions/smtp.php

+ 1 - 1
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);