]> granicus.if.org Git - neomutt/commitdiff
Don't trim In-Reply-To with $edit_headers set
authorRocco Rutte <pdmef@gmx.net>
Tue, 28 Apr 2009 11:03:57 +0000 (13:03 +0200)
committerRocco Rutte <pdmef@gmx.net>
Tue, 28 Apr 2009 11:03:57 +0000 (13:03 +0200)
In case of a tagged reply to several messages, we
want In-Reply-To to contain all parent Message-Ids.

sendlib.c

index 2106e9bb3f6926846b328b3f98439bf3459f4613..64ce890f39c2ef39f193c3a5985c30e413002d9a 100644 (file)
--- 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);
   }