]> granicus.if.org Git - neomutt/commitdiff
Only add Status: header (fcc/postpone) when saving to mbox/mmdf
authorRocco Rutte <pdmef@gmx.net>
Thu, 25 Jun 2009 12:29:52 +0000 (14:29 +0200)
committerRocco Rutte <pdmef@gmx.net>
Thu, 25 Jun 2009 12:29:52 +0000 (14:29 +0200)
ChangeLog
sendlib.c

index bedff399d9f4145d465212d781dac20f3e3b9882..f1ae7652d4d4f412f9de22a5b66c7ef405917e8a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-06-25 14:29 +0200  Rocco Rutte  <pdmef@gmx.net>  (bd0828adede8)
+
+       * compose.c: Treat messages written with <write-fcc> as fcc, not
+       postponed.
+
+2009-06-23 10:13 -0700  Vincent Lefevre  <vincent@vinc17.org>  (bc2463863c15)
+
+       * ChangeLog, po/fr.po: Updated French translation.
+
 2009-06-23 16:56 +0200  Rocco Rutte  <pdmef@gmx.net>  (d152033cf967)
 
        * doc/manual.xml.head: Manual: Simply type conversion section wording.
index a6e7738c34ef975cb6f2730b5f8ec14fe1dce3aa..5915a5481bb0509592dee3f13cebc05eadef5ac9 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -2653,9 +2653,9 @@ int mutt_write_fcc (const char *path, HEADER *hdr, const char *msgid, int post,
    */
   if (post && fcc)
     fprintf (msg->fp, "X-Mutt-Fcc: %s\n", fcc);
-  fprintf (msg->fp, "Status: RO\n");
-
 
+  if (f.magic == M_MMDF || f.magic == M_MBOX)
+    fprintf (msg->fp, "Status: RO\n");
 
   /* (postponment) if the mail is to be signed or encrypted, save this info */
   if ((WithCrypto & APPLICATION_PGP)