From db012b376e2b9aa93273232e1e9d1f6f95d5b344 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Tue, 28 Apr 2009 13:03:57 +0200 Subject: [PATCH] Don't trim In-Reply-To with $edit_headers set In case of a tagged reply to several messages, we want In-Reply-To to contain all parent Message-Ids. --- sendlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendlib.c b/sendlib.c index 2106e9bb3..64ce890f3 100644 --- a/sendlib.c +++ b/sendlib.c @@ -1837,7 +1837,7 @@ int mutt_write_rfc822_header (FILE *fp, ENVELOPE *env, BODY *attach, if (env->in_reply_to) { fputs ("In-Reply-To:", fp); - mutt_write_references (env->in_reply_to, fp, 1); + mutt_write_references (env->in_reply_to, fp, 0); fputc ('\n', fp); } -- 2.40.0