From 86db931f91e010584f4f5e590de228b6ab6abcd1 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Wed, 31 Jan 2001 18:31:27 +0000 Subject: [PATCH] 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@... --- send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.40.0