From a4627b99c0ad438859a33119429955e32000f625 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 23 Jan 2008 15:06:50 +0000 Subject: [PATCH] Fixed SMTP problem to adhere to newer RFC --- includes/general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/general.php b/includes/general.php index 570d48e..cc02088 100644 --- a/includes/general.php +++ b/includes/general.php @@ -640,7 +640,7 @@ $line = fgets($fp, 4096); if(substr($line, 0, 3) != "250") continue; - fputs($fp, "MAIL FROM: <>\r\n"); + fputs($fp, "MAIL FROM: \r\n"); $line = fgets($fp, 4096); if(substr($line, 0, 3) != "250")