]> granicus.if.org Git - mutt/commitdiff
Cleanly handle fcc when the user unsets it and the message is
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 15 Mar 1999 15:17:42 +0000 (15:17 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 15 Mar 1999 15:17:42 +0000 (15:17 +0000)
postponed.

send.c

diff --git a/send.c b/send.c
index 363c1237a414b09b328c29f97d1dae70bb99d08f..9ac62694b59d8fb40e301a10afdddcc30a49b71a 100644 (file)
--- a/send.c
+++ b/send.c
@@ -1135,7 +1135,7 @@ ci_send_message (int flags,               /* send mode */
   /* specify a default fcc.  if we are in batchmode, only save a copy of
    * the message if the value of $copy is yes or ask-yes */
 
-  if (!fcc[0] && (!(flags & SENDBATCH) || (quadoption (OPT_COPY) & 0x1)))
+  if (!fcc[0] && !(flags & SENDPOSTPONED) && (!(flags & SENDBATCH) || (quadoption (OPT_COPY) & 0x1)))
   {
     /* set the default FCC */
     if (!msg->env->from)