From: Kumar Gala Date: Tue, 24 Jul 2007 14:50:38 +0000 (-0500) Subject: send-email: Update regex parsing for pine aliases X-Git-Tag: v1.5.3-rc3~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2d8ae400d134c326f3ab0ec15ae522fb74cd0b1d;p=git.git send-email: Update regex parsing for pine aliases The pine address book format is tab seperated and the first field is the nickname/alias and the third field is the email address as per: http://www.washington.edu/pine/tech-notes/low-level.html Signed-off-by: Kumar Gala Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index a09b1c965..f43f92f95 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -237,7 +237,7 @@ my %parse_alias = ( $aliases{$1} = [ split(/\s+/, $2) ]; }}}, pine => sub { my $fh = shift; while (<$fh>) { - if (/^(\S+)\s+(.*)$/) { + if (/^(\S+)\t.*\t(.*)$/) { $aliases{$1} = [ split(/\s*,\s*/, $2) ]; }}}, gnus => sub { my $fh = shift; while (<$fh>) {