* [PATCH v2] git-send-email: use ! to indicate relative path to command
@ 2021-05-11 19:01 Gregory Anders
0 siblings, 0 replies; only message in thread
From: Gregory Anders @ 2021-05-11 19:01 UTC (permalink / raw)
To: git; +Cc: Gregory Anders
When the smtpServer config option is prefixed with a ! character, the
value of the option should be interpreted as a command to look up on
PATH.
---
Fix the implementation to correctly find the absolute path for the given
command, and report an error if the command is not found on PATH.
git-send-email.perl | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/git-send-email.perl b/git-send-email.perl
index 175da07d94..6d10901595 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -1492,7 +1492,24 @@ sub send_message {
if ($dry_run) {
# We don't want to send the email.
- } elsif (file_name_is_absolute($smtp_server)) {
+ } elsif (file_name_is_absolute($smtp_server) || $smtp_server =~ /^!/) {
+ if ($smtp_server =~ s/^!//) {
+ my $smtp_command;
+ my @progs = map {"$_/$smtp_server"} split /:/, $ENV{PATH};
+ foreach (@progs) {
+ if (-x $_) {
+ $smtp_command = $_;
+ last;
+ }
+ }
+
+ if (!defined $smtp_command) {
+ die __("The command $smtp_server was not found on PATH.")
+ }
+
+ $smtp_server = $smtp_command;
+ }
+
my $pid = open my $sm, '|-';
defined $pid or die $!;
if (!$pid) {
--
2.31.1.576.g55f6e1c2f1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-05-11 19:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-11 19:01 [PATCH v2] git-send-email: use ! to indicate relative path to command Gregory Anders
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.