From: Michael Elkins Date: Mon, 11 Nov 2002 19:51:09 +0000 (+0000) Subject: Fix #1364. X-Git-Tag: mutt-1-5-2-rel~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=154784ff9bc53c775a4e0cc8c23fd9f674d3178e;p=mutt Fix #1364. --- diff --git a/send.c b/send.c index ea0be574..0cebc532 100644 --- a/send.c +++ b/send.c @@ -1209,6 +1209,14 @@ ci_send_message (int flags, /* send mode */ mutt_message_hook (NULL, msg, M_SENDHOOK); + /* + * Unset the replied flag from the message we are composing since it is + * no longer required. This is done here because the FCC'd copy of + * this message was erroneously get the 'R'eplied flag when stored in + * a maildir-style mailbox. + */ + msg->replied = 0; + if (killfrom) { rfc822_free_address (&msg->env->from);