It seems more logical to use the SERVER_NAME as the RHS of the Message-ID
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 11 Aug 2004 11:03:37 +0000 (11:03 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 11 Aug 2004 11:03:37 +0000 (11:03 +0000)
than to use the remote host from which the user is connecting. Even more
since the REMOTE_ADDR is already contained within the Message-ID.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7883 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/deliver/Deliver.class.php

index 55c6a959ffc51767486ed542f43804b11ff32960..6adaf3da8f1f36d5b75557eb817418d45de0b0f2 100644 (file)
@@ -379,7 +379,7 @@ class Deliver {
         $date = date('D, j M Y H:i:s ', mktime()) . $this->timezone();
         /* Create a message-id */
         $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
-        $message_id .= time() . '.squirrel@' . (isset($REMOTE_HOST) ? $REMOTE_HOST : "[$REMOTE_ADDR]") .'>';
+        $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
         /* Make an RFC822 Received: line */
         if (isset($REMOTE_HOST)) {
             $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";