From: "Michael S. Tsirkin" <mst@redhat.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH v2 2/6] send-email: fix suppress-cc=self on cccmd
Date: Mon, 3 Jun 2013 19:15:56 +0300 [thread overview]
Message-ID: <20130603161556.GA16750@redhat.com> (raw)
In-Reply-To: <7v7gibjieh.fsf@alter.siamese.dyndns.org>
On Mon, Jun 03, 2013 at 08:58:14AM -0700, Junio C Hamano wrote:
> "Michael S. Tsirkin" <mst@redhat.com> writes:
>
> > When cccmd is used, old-style suppress-from filter
> > is applied by the newer suppress-cc=self isn't.
> > Fix this up.
> >
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> > git-send-email.perl | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/git-send-email.perl b/git-send-email.perl
> > index bd13cc8..a138615 100755
> > --- a/git-send-email.perl
> > +++ b/git-send-email.perl
> > @@ -1462,7 +1462,7 @@ sub recipients_cmd {
> > $address =~ s/^\s*//g;
> > $address =~ s/\s*$//g;
> > $address = sanitize_address($address);
> > - next if ($address eq $sanitized_sender and $suppress_from);
> > + next if ($address eq $sender and $suppress_cc{'self'});
>
> If $suppress_from is defined, $suppress_cc{'self'} gets its value,
> so the latter half of this change is very understandable.
>
> The original comparison uses $address that is "sanitized" (whose
> definition is roughly "mangled/quoted with rfc2047 etc to fit on
> To/Cc headers") against $sanitized_sender, which means for a
>
> $sender = 'Michael S. Tsirkin <mst@redhat.com>';
>
> we used
>
> $sanitized_sender = '"Michael S. Tsirkin" <mst@redhat.com>';
>
> for comparison, but the new code does not quote the $recipient_name
> part inside dq for the single dot after the middle name. Is this a
> desirable change?
What I tried to do here is split the changes to small
chunks and I picked a chunk of a later patch in an earlier one
by mistake.
So this is fixed up by patch 4/6
in the series, which redefines sender to have
the sanitized value, everywhere.
I guess I'll have to repost moving this former
chunk to patch 4.
> > push @addresses, $address;
> > printf("($prefix) Adding %s: %s from: '%s'\n",
> > $what, $address, $cmd) unless $quiet;
next prev parent reply other threads:[~2013-06-03 16:15 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-30 7:11 [PATCH v2 0/6] git send-email suppress-cc=self fixes Michael S. Tsirkin
2013-05-30 7:11 ` [PATCH v2 1/6] t/send-email.sh: add test for suppress-cc=self Michael S. Tsirkin
2013-06-03 16:19 ` Junio C Hamano
2013-05-30 7:11 ` [PATCH v2 2/6] send-email: fix suppress-cc=self on cccmd Michael S. Tsirkin
2013-06-03 15:58 ` Junio C Hamano
2013-06-03 16:15 ` Michael S. Tsirkin [this message]
2013-06-03 18:04 ` Junio C Hamano
2013-06-03 19:58 ` Michael S. Tsirkin
2013-06-03 21:55 ` Junio C Hamano
2013-05-30 7:11 ` [PATCH v2 3/6] t/send-email: test " Michael S. Tsirkin
2013-05-30 7:11 ` [PATCH v2 4/6] send-email: make --suppress-cc=self sanitize input Michael S. Tsirkin
2013-06-03 16:17 ` Junio C Hamano
2013-06-03 16:32 ` Michael S. Tsirkin
2013-06-03 18:02 ` Junio C Hamano
2013-05-30 7:11 ` [PATCH v2 5/6] t/send-email: add test with quoted sender Michael S. Tsirkin
2013-05-30 7:11 ` [PATCH v2 6/6] t/send-email: test suppress-cc=self with non-ascii Michael S. Tsirkin
2013-06-03 16:18 ` [PATCH v2 0/6] git send-email suppress-cc=self fixes Junio C Hamano
2013-06-03 16:36 ` Michael S. Tsirkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130603161556.GA16750@redhat.com \
--to=mst@redhat.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.