git-send-email and pine alias format
From: Kumar Gala <hidden>
Date: 2016-06-15 22:43:23
From: Kumar Gala <hidden>
Date: 2016-06-15 22:43:23
I was wondering why we don't parse the pine alias format according to the following spec: http://www.washington.edu/pine/tech-notes/low-level.html I'd expect omething like, to get the address field.
@@ -225,7 +238,7 @@ my %parse_alias = ( $aliases{$1} = [ split(/\s+/, $2) ]; }}}, pine => sub { my $fh = shift; while (<$fh>) { - if (/^(\S+)\t.*\t(.*)$/) { + if (/^(\S+)\s+(.*)$/) { $aliases{$1} = [ split(/\s*,\s*/, $2) ]; }}}, gnus => sub { my $fh = shift; while (<$fh>) { - k