Browse Source

small fix to authenticated smtp

Luke Ehresman 24 years ago
parent
commit
6b8e01815e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      functions/smtp.php

+ 2 - 2
functions/smtp.php

@@ -322,7 +322,7 @@
 
    function sendSMTP($t, $c, $b, $subject, $body, $more_headers) {
       global $username, $popuser, $domain, $version, $smtpServerAddress, $smtpPort,
-         $data_dir, $color, $use_authenticating_smtp;
+         $data_dir, $color, $use_authenticated_smtp;
 
       $to = expandAddrs(parseAddrs($t));
       $cc = expandAddrs(parseAddrs($c));
@@ -345,7 +345,7 @@
       $cc_list = getLineOfAddrs($cc);
 
       /** Lets introduce ourselves */
-      if (! isset ($use_authenticating_smtp)) {
+      if (! isset ($use_authenticated_smtp) && $use_authenticated_smtp == true) {
          fputs($smtpConnection, "HELO $domain\r\n");
          $tmp = fgets($smtpConnection, 1024);
          errorCheck($tmp, $smtpConnection);