From: Thomas Roessler Date: Wed, 31 Jan 2001 18:31:27 +0000 (+0000) Subject: Don't use group mailboxes with list-reply. E.g., when you have X-Git-Tag: mutt-1-3-15-rel~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86db931f91e010584f4f5e590de228b6ab6abcd1;p=mutt Don't use group mailboxes with list-reply. E.g., when you have "ietf" as a list pattern, and a message goes to IETF-Announce:;, ietf-openpgp@somewhere.org, list-reply will now yield ietf-openpgp and _not_: IETF-Announce: ietf-openpgp@... --- diff --git a/send.c b/send.c index b96ae5a0..b2335e63 100644 --- a/send.c +++ b/send.c @@ -168,7 +168,7 @@ static ADDRESS *find_mailing_lists (ADDRESS *t, ADDRESS *c) { for (; t; t = t->next) { - if (mutt_is_mail_list (t)) + if (mutt_is_mail_list (t) && !t->group) { if (top) {