Do not parse Message-ID as emailaddress.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 8 Sep 2002 14:54:06 +0000 (14:54 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 8 Sep 2002 14:54:06 +0000 (14:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3617 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/view_header.php

index 8a2c111f1584288a1bc81b105df8e98df2598108..c7aa7e0e35d8ef67edf46ea946fccaee03e4b00e 100644 (file)
@@ -63,7 +63,10 @@ function  parse_viewheader($imapConnection,$id, $passed_ent_id) {
             $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
             $j++;
         }
             $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
             $j++;
         }
-        parseEmail($s);
+        if(strtolower($f) != 'message-id:')
+       {
+               parseEmail($s);
+       }
         if (isset($f)) {
             $header_output[] = array($f,$s);
         }
         if (isset($f)) {
             $header_output[] = array($f,$s);
         }