summaryrefslogtreecommitdiffstats
path: root/send.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-09 10:46:48 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-09 10:46:48 +0000
commit55043d862ba2be15fee1979bf8cbb88627c83384 (patch)
treeba0dccd53ac35570dea007eda88e253825e36777 /send.c
parentf2e1a2bc1b55e6ead2391ae021cd6dcc23150924 (diff)
Fix a group reply problem.
Diffstat (limited to 'send.c')
-rw-r--r--send.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/send.c b/send.c
index e0f3eb27..86cd2d5b 100644
--- 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);
}
}