- Improve recovery when EHLO not supported on legacy SMTP servers
[squirrelmail.git] / class / deliver / Deliver_SMTP.class.php
index e565ca8442c5d1abab95e4f3cf80776af102a40d..3b94f1e28d1e1d4d61aa7b69aff208d2a46338bb 100644 (file)
@@ -140,8 +140,8 @@ class Deliver_SMTP extends Deliver {
         // Read ehlo response
         $tmp = $this->parse_ehlo_response($stream);
         if ($this->errorCheck($tmp,$stream)) {
-            // fall back to HELO if EHLO is not supported
-            if ($this->dlv_ret_nr == '500') {
+            // fall back to HELO if EHLO is not supported (error 5xx)
+            if ($this->dlv_ret_nr{0} == '5') {
                 fputs($stream, "HELO $helohost\r\n");
                 $tmp = fgets($stream,1024);
                 if ($this->errorCheck($tmp,$stream)) {