From bf7c55d152b10be7b44e55d3529b70b8a9be010f Mon Sep 17 00:00:00 2001 From: antipode Date: Sun, 30 Dec 2001 18:10:09 +0000 Subject: [PATCH] This *may* fix a problem with Outlook brain damage, reported by myself in -devel and in -users in message <003c01c190d3$79d6bd20$5b00a8c0@graycastle.com> (pending verification) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2008 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/smtp.php b/functions/smtp.php index 20525131..ad566b3e 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -278,9 +278,9 @@ function write822Header ($fp, $t, $c, $b, $subject, $more_headers) { $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)"; } - $header = "Received: from $received_from\r\n"; - $header .= " (SquirrelMail authenticated user $username)\r\n"; - $header .= " by $SERVER_NAME with HTTP;\r\n"; + $header = "Received: from $received_from\n"; + $header .= " (SquirrelMail authenticated user $username)\n"; + $header .= " by $SERVER_NAME with HTTP;\n"; $header .= " $date\r\n"; /* Insert the rest of the header fields */ -- 2.25.1