From 9a85a6797e7e424012e6bfb5955de7d579825150 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Tue, 6 Mar 2012 22:53:37 +0100 Subject: [PATCH] SMTP-Bounce-Message: separate mime header by \r\n --- citadel/modules/smtp/serv_smtpqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/modules/smtp/serv_smtpqueue.c b/citadel/modules/smtp/serv_smtpqueue.c index c51b43c16..2292df1c4 100644 --- a/citadel/modules/smtp/serv_smtpqueue.c +++ b/citadel/modules/smtp/serv_smtpqueue.c @@ -630,7 +630,7 @@ void smtpq_do_bounce(OneQueItem *MyQItem, StrBuf *OMsgTxt) } /* Attach the original message */ - StrBufAppendBufPlain(BounceMB, HKEY("--"), 0); + StrBufAppendBufPlain(BounceMB, HKEY("\r\n--"), 0); StrBufAppendBuf(BounceMB, boundary, 0); StrBufAppendBufPlain(BounceMB, HKEY("\r\n"), 0); StrBufAppendBufPlain(BounceMB, -- 2.30.2