]> granicus.if.org Git - mutt/commitdiff
Don't use group mailboxes with list-reply. E.g., when you have
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 31 Jan 2001 18:31:27 +0000 (18:31 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 31 Jan 2001 18:31:27 +0000 (18:31 +0000)
"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

diff --git a/send.c b/send.c
index b96ae5a0b722358b1795a9df8079e3eefaa7aaaa..b2335e63b87eb79595e972f8718338e32a096044 100644 (file)
--- 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)
        {