From: Richard Russon Date: Fri, 12 Apr 2019 16:17:54 +0000 (+0100) Subject: fix setting the 'replied' flag X-Git-Tag: 2019-10-25~264 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19d28eaa50954083bd7678a5f1bc7325392965d9;p=neomutt fix setting the 'replied' flag When replying to an email, mark the original as 'replied'. Fixes: #1647 --- diff --git a/send.c b/send.c index b53f37558..47600da10 100644 --- a/send.c +++ b/send.c @@ -2457,10 +2457,7 @@ int ci_send_message(SendFlags flags, struct Email *msg, const char *tempfile, * In-Reply-To: and References: headers during edit */ if (flags & SEND_REPLY) { - if (cur && ctx) - mutt_set_flag(ctx->mailbox, cur, MUTT_REPLIED, is_reply(cur, msg)); - else if (!(flags & SEND_POSTPONED) && ctx && ctx->mailbox && - (ctx->mailbox->msg_tagged != 0)) + if (!(flags & SEND_POSTPONED) && ctx && ctx->mailbox) { STAILQ_FOREACH(en, el, entries) {