From 87a8f096f034168055f8c8e436784091e8030024 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 6 Feb 2006 04:19:27 +0000 Subject: [PATCH] Prepended the pseudomessage with an RFC822 newline in order to prevent it from being treated as a header. --- citadel/msgbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/msgbase.c b/citadel/msgbase.c index ce743e39f..2ca19528c 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -1004,7 +1004,7 @@ struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body) } } if (ret->cm_fields['M'] == NULL) { - ret->cm_fields['M'] = strdup("\n"); + ret->cm_fields['M'] = strdup("\r\n\r\n (no text)\r\n"); } /* Perform "before read" hooks (aborting if any return nonzero) */ -- 2.39.2