From 86b898487a13483a1b6a5dc7f26a1f103fb2574d Mon Sep 17 00:00:00 2001 From: Eric Sunshine Date: Mon, 1 Jun 2015 14:22:36 -0400 Subject: [PATCH] send-email: further warn about unsupported sendmail aliases features The sendmail aliases parser diagnoses unsupported features and unrecognized lines. For completeness, also warn about unsupported redirection to "/path/name" and "|command", as well as ":include:". Signed-off-by: Eric Sunshine Signed-off-by: Junio C Hamano --- git-send-email.perl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/git-send-email.perl b/git-send-email.perl index eb1d678fb0..ae9f8698c5 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -492,6 +492,10 @@ sub parse_sendmail_alias { local $_ = shift; if (/"/) { print STDERR "warning: sendmail alias with quotes is not supported: $_\n"; + } elsif (/:include:/) { + print STDERR "warning: `:include:` not supported: $_\n"; + } elsif (/[\/|]/) { + print STDERR "warning: `/file` or `|pipe` redirection not supported: $_\n"; } elsif (/^(\S+?)\s*:\s*(.+)$/) { my ($alias, $addr) = ($1, $2); $aliases{$alias} = [ split_addrs($addr) ]; -- 2.11.4.GIT