Explorar el Código

Do not display email addr as link in View Headers

Thijs Kinkhorst hace 23 años
padre
commit
13c21d1fa7
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      src/read_body.php

+ 3 - 1
src/read_body.php

@@ -470,7 +470,9 @@ if (isset($view_hdr)) {
             $s .= '    ' . nl2br($second[$j]);
             $j++;
         }
-        parseEmail($s);
+        if(strtolower($f) != 'message-id:') {
+		parseEmail($s);		/* Find and linkify emailaddresses except msgid */
+	}
         if (isset($f)) {
             echo "<nobr><tt><b>$f</b>$s</tt></nobr>";
         }