From 5ed859015569abecc7db7e0a0cff293d7107fdb8 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 11 Jan 2006 16:08:54 +0000 Subject: [PATCH] * Moved the "Content-Identifer" (sic) header out of the envelope journal subpart headers and into the top-level headers. --- citadel/ChangeLog | 4 ++++ citadel/journaling.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index 8d18dfb2b..1e5f931ea 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,5 +1,9 @@ $Id$ +Wed Jan 11 11:07:47 EST 2006 ajc +* Moved the "Content-Identifer" (sic) header out of the envelope journal + subpart headers and into the top-level headers. + Tue Jan 10 22:26:00 EST 2006 ajc * Added a per-user client option to always compose messages using the external editor. diff --git a/citadel/journaling.c b/citadel/journaling.c index e13b2d4e5..5cba32940 100644 --- a/citadel/journaling.c +++ b/citadel/journaling.c @@ -136,11 +136,11 @@ void JournalRunQueueMsg(struct jnlq *jmsg) { */ sprintf(message_text, "Content-type: multipart/mixed; boundary=\"%s\"\r\n" + "Content-Identifer: ExJournalReport\r\n" "MIME-Version: 1.0\r\n" "\n" "--%s\r\n" "Content-type: text/plain\r\n" - "Content-Identifer: ExJournalReport\r\n" "\r\n" "Sender: %s " , -- 2.30.2