Signed-off-by: Eric Sunshine <[email protected]>
---
git-send-email.perl | 5 -----
1 file changed, 5 deletions(-)
diff --git a/git-send-email.perl b/git-send-email.perl
index 819f87e..0b18682 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -517,26 +517,21 @@ my %parse_alias = (
} },
sendmail => sub { my $fh = shift; while (<$fh>) {
- # ignore blank lines and comment lines
if (/^\s*(?:#.*)?$/) { }
- # warn on lines that contain quotes
elsif (/"/) {
print STDERR "warning: sendmail alias with quotes is
not supported: $_\n";
}
- # warn on lines that continue
elsif (/^\s|\\$/) {
print STDERR "warning: sendmail continuation line is
not supported: $_\n";
}
- # recognize lines that look like an alias
elsif (/^(\S+?)\s*:\s*(.+)$/) {
my ($alias, $addr) = ($1, $2);
$aliases{$alias} = [ split_addrs($addr) ];
}
- # warn on lines that are not recognized
else {
print STDERR "warning: sendmail line is not recognized:
$_\n";
}}},
--
2.4.2.538.g5f4350e
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html