On Fri, May 09, 2014 at 04:13:31PM +0800, Adam Lee wrote:

> BugLink: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747068
> 
> "--bcc" should have higher priority than sendemail.bcc.
> 
> > --bcc=<address>
> >     Specify a "Bcc:" value for each email. Default is the value of 
> > sendemail.bcc.
> >
> >     The --bcc option must be repeated for each user you want on the bcc 
> > list.
> 
> Reproducing steps:
> 1, set sendemail.bcc in .gitconfig.
> 2, git send-email --bcc with another address.

Hrm, I cannot reproduce at all here:

  $ git config sendemail.bcc config-...@example.com
  $ git send-email --dry-run --to=t...@example.com -1 origin
  (mbox) Adding cc: Junio C Hamano <gits...@pobox.com> from line 'From: Junio C 
Hamano <gits...@pobox.com>'
  Dry-OK. Log says:
  Sendmail: /usr/sbin/sendmail -i t...@example.com gits...@pobox.com 
config-...@example.com
  > [...]

OK, so our configured bcc works. Now let's override it:

  $ git send-email --dry-run --to=t...@example.com \
      --bcc=cmdline-...@example.com -1 origin
  (mbox) Adding cc: Junio C Hamano <gits...@pobox.com> from line 'From: Junio C 
Hamano <gits...@pobox.com>'
  Dry-OK. Log says:
  Sendmail: /usr/sbin/sendmail -i t...@example.com gits...@pobox.com 
cmdline-...@example.com

That looks like it's working as expected. Can you show us similar
commands that demonstrate the failure?

-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to