From 086c591c104e98fd99820d26fbd63cf8f7053369 Mon Sep 17 00:00:00 2001 From: "scott%scott-macgregor.org" Date: Mon, 31 May 2004 06:58:43 +0000 Subject: [PATCH] Bug #244722 --> Certain mal-formed mime messages that were marked as junk aren't getting moved to the junk mail folder. patch by Lorenzo Colitti. sr=mscott --- mailnews/mime/src/mimemsg.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mailnews/mime/src/mimemsg.cpp b/mailnews/mime/src/mimemsg.cpp index b9c0a94c0d4d..2fb757dd9a4c 100644 --- a/mailnews/mime/src/mimemsg.cpp +++ b/mailnews/mime/src/mimemsg.cpp @@ -546,6 +546,15 @@ MimeMessage_parse_eof (MimeObject *obj, PRBool abort_p) outer_p = !obj->headers; /* is this the outermost message? */ + // Hack for messages with truncated headers (bug 244722) + // If there is no empty line in a message, the parser can't figure out where + // the headers end, causing parsing to hang. So we insert an extra newline + // to keep it happy. This is OK, since a message without any empty lines is + // broken anyway... + if(outer_p && ! msg->hdrs->done_p) { + MimeMessage_parse_line("\n", 1, obj); + } + // Once we get to the end of parsing the message, we will notify // the emitter that we are done the the body.