From d6477ca260f4ac67a889366e89116a40672f5c56 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 16 Sep 2014 00:19:05 -0400 Subject: [PATCH] Fixed a bug caused by a wrong variable name --- verify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify.php b/verify.php index 7c917af..37924cb 100644 --- a/verify.php +++ b/verify.php @@ -42,7 +42,7 @@ function verifyEmail($toemail, $fromemail, $getdetails = false){ $connect = @fsockopen($mx_ip, 25); if($connect){ if(ereg("^220", $out = fgets($connect, 1024))){ - fputs ($connect , "HELO $HTTP_HOST\r\n"); + fputs ($connect , "HELO $mx_ip\r\n"); $out = fgets ($connect, 1024); $details .= $out."\n";