From 27fbf8399989bb75b7da84434a8bb491e130562b Mon Sep 17 00:00:00 2001 From: kink Date: Sun, 8 Sep 2002 14:54:06 +0000 Subject: [PATCH] Do not parse Message-ID as emailaddress. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3617 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/view_header.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/view_header.php b/src/view_header.php index 8a2c111f..c7aa7e0e 100644 --- a/src/view_header.php +++ b/src/view_header.php @@ -63,7 +63,10 @@ function parse_viewheader($imapConnection,$id, $passed_ent_id) { $s .= '    ' . nl2br($second[$j]); $j++; } - parseEmail($s); + if(strtolower($f) != 'message-id:') + { + parseEmail($s); + } if (isset($f)) { $header_output[] = array($f,$s); } -- 2.25.1