]> granicus.if.org Git - mutt/commitdiff
Fix a group reply problem.
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 9 Nov 1998 10:46:48 +0000 (10:46 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 9 Nov 1998 10:46:48 +0000 (10:46 +0000)
send.c

diff --git a/send.c b/send.c
index e0f3eb27012e53acf1929dbcf452d08c5b0b99e4..86cd2d5b2fccadcdc28e74ec961597d59bdc5edc 100644 (file)
--- a/send.c
+++ b/send.c
@@ -462,9 +462,8 @@ static int fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags)
 
     if ((flags & SENDGROUPREPLY) && !in->mail_followup_to)
     {
-      if(!mutt_addr_is_user(in->to))
-       rfc822_append (&out->cc, in->to);
-      
+      /* if(!mutt_addr_is_user(in->to)) */
+      rfc822_append (&out->cc, in->to);
       rfc822_append (&out->cc, in->cc);
     }
   }