From: Thomas Roessler Date: Wed, 16 Feb 2000 17:29:33 +0000 (+0000) Subject: Fix mail-followup-to generation. X-Git-Tag: mutt-1-1-5-rel~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f99db0af0db47e908261b00107eb8f1e86fb7aa4;p=mutt Fix mail-followup-to generation. --- diff --git a/send.c b/send.c index 631405af..f9402b49 100644 --- a/send.c +++ b/send.c @@ -819,7 +819,7 @@ void mutt_set_followup_to (ENVELOPE *e) * but makes sure list-reply has the desired effect. */ - if (e->mail_followup_to && mutt_is_list_recipient (0, e->to, e->cc)) + if (e->mail_followup_to && !mutt_is_list_recipient (0, e->to, e->cc)) { if (e->from) from = rfc822_cpy_adr (e->from);