From: Ask Bjørn Hansen Date: Mon, 19 Nov 2007 11:00:26 +0000 (-0800) Subject: send-email: Don't add To: recipients to the Cc: header X-Git-Tag: v1.5.4-rc0~176 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=7ac17529297910c7b4502bdfa543ddec3f943413;p=git.git send-email: Don't add To: recipients to the Cc: header Signed-off-by: Ask Bjørn Hansen Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 47afc5691..990e44bf0 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -557,7 +557,11 @@ sub sanitize_address sub send_message { my @recipients = unique_email_list(@to); - @cc = (map { sanitize_address($_) } @cc); + @cc = (grep { my $cc = extract_valid_address($_); + not grep { $cc eq $_ } @recipients + } + map { sanitize_address($_) } + @cc); my $to = join (",\n\t", @recipients); @recipients = unique_email_list(@recipients,@cc,@bcclist); @recipients = (map { extract_valid_address($_) } @recipients);