Skip to content

Commit

Permalink
Fixed a bug caused by a wrong variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 16, 2014
1 parent 03780a0 commit d6477ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit d6477ca

Please sign in to comment.