* [PATCH] send-email: ignore trailing whitespace in mailrc alias file
@ 2016-03-17 22:08 Stefan Beller
2016-03-17 23:58 ` Jeff King
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Beller @ 2016-03-17 22:08 UTC (permalink / raw)
To: peff, gitster; +Cc: git, Stefan Beller
From: Jeff King <peff@peff.net>
This fixes send-email which would not work with mailrc alias files
which had trailing whitespaces.
Signed-off-by: Stefan Beller <sbeller@google.com>
---
> On Thu, Mar 17, 2016 at 10:47:50AM -0700, Stefan Beller wrote:
>
> sent from git-send-email with a corrupt .mailrc file.
>
> Great, but could probably use a better commit message. ;P
>
> -Peff
Uhm, yes. Why do you ask? ;)
I forgot again that it is too late to edit the patch when send-email asks:
> Send this email? ([y]es|[n]o|[q]uit|[a]ll):
as it has read the patch from disk and keeps it in memory I assume?
I just wrote the commit message as I would do, but offer you to claim authorship
for that perl stuff. So in case you'd want to reword that, I'd ask you to that.
Also asking for your signoff. (But apart from that I consider this patch final.)
Thanks,
Stefan
diff --git a/git-send-email.perl b/git-send-email.perl
index d356901..c45b22a 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -533,7 +533,7 @@ my %parse_alias = (
$aliases{$alias} = \@addr
}}},
mailrc => sub { my $fh = shift; while (<$fh>) {
- if (/^alias\s+(\S+)\s+(.*)$/) {
+ if (/^alias\s+(\S+)\s+(.*?)\s*$/) {
# spaces delimit multiple addresses
$aliases{$1} = [ quotewords('\s+', 0, $2) ];
}}},
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] send-email: ignore trailing whitespace in mailrc alias file
2016-03-17 22:08 [PATCH] send-email: ignore trailing whitespace in mailrc alias file Stefan Beller
@ 2016-03-17 23:58 ` Jeff King
0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2016-03-17 23:58 UTC (permalink / raw)
To: Stefan Beller; +Cc: gitster, git
On Thu, Mar 17, 2016 at 03:08:16PM -0700, Stefan Beller wrote:
> I just wrote the commit message as I would do, but offer you to claim
> authorship for that perl stuff. So in case you'd want to reword that,
> I'd ask you to that. Also asking for your signoff. (But apart from
> that I consider this patch final.)
Yeah, I am happy to take the credit/blame when somebody inevitably shows
a case where this does the wrong thing (I say inevitable because I
assume that is the fate of all regexes -- to one day be proven to miss a
corner case).
But surely you know that my commit messages are more verbose than that.
:)
Here's what I would have written:
-- >8 --
Subject: [PATCH] send-email: ignore trailing whitespace in mailrc alias file
The regex for parsing mailrc considers everything after the
second whitespace to be the email address, up to the end of
the line. We have to include whitespace there, because you
may have multiple space-separated addresses, each with their
own internal quoting.
But if there is trailing whitespace, we include that, too.
This confuses quotewords() when we try to split the
individual addresses, and we end up storing "undef" in our
alias list. Later parts of the code then access that,
generating perl warnings.
Let's tweak our regex to throw away any trailing whitespace
on each line.
Signed-off-by: Jeff King <peff@peff.net>
---
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 d356901..c45b22a 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -533,7 +533,7 @@ my %parse_alias = (
$aliases{$alias} = \@addr
}}},
mailrc => sub { my $fh = shift; while (<$fh>) {
- if (/^alias\s+(\S+)\s+(.*)$/) {
+ if (/^alias\s+(\S+)\s+(.*?)\s*$/) {
# spaces delimit multiple addresses
$aliases{$1} = [ quotewords('\s+', 0, $2) ];
}}},
--
2.8.0.rc3.378.gf2f7872
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-17 23:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-17 22:08 [PATCH] send-email: ignore trailing whitespace in mailrc alias file Stefan Beller
2016-03-17 23:58 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).