nixpkgs/pkgs/applications/version-management/git/git-send-email-honor-PATH.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.4 KiB
Diff
Raw Normal View History

diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt
2021-08-17 08:29:39 +00:00
index 3db4eab4ba..39bc0e77c9 100644
--- a/Documentation/git-send-email.txt
+++ b/Documentation/git-send-email.txt
2021-08-17 08:29:39 +00:00
@@ -220,9 +220,9 @@ a password is obtained using 'git-credential'.
--smtp-server=<host>::
If set, specifies the outgoing SMTP server to use (e.g.
`smtp.example.com` or a raw IP address). If unspecified, and if
- `--sendmail-cmd` is also unspecified, the default is to search
- for `sendmail` in `/usr/sbin`, `/usr/lib` and $PATH if such a
- program is available, falling back to `localhost` otherwise.
+ `--sendmail-cmd` is also unspecified, the default is to search for
+ `sendmail` in $PATH if such a program is available, falling back to
+ `localhost` otherwise.
+
For backward compatibility, this option can also specify a full pathname
of a sendmail-like program instead; the program must support the `-i`
diff --git a/git-send-email.perl b/git-send-email.perl
2021-08-17 08:29:39 +00:00
index e65d969d0b..508d49483d 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
2021-08-17 08:29:39 +00:00
@@ -1066,8 +1066,7 @@ sub expand_one_alias {
}
2019-02-25 18:26:30 +00:00
2021-08-17 08:29:39 +00:00
if (!defined $sendmail_cmd && !defined $smtp_server) {
2018-01-18 14:13:17 +00:00
- my @sendmail_paths = qw( /usr/sbin/sendmail /usr/lib/sendmail );
- push @sendmail_paths, map {"$_/sendmail"} split /:/, $ENV{PATH};
+ my @sendmail_paths = map {"$_/sendmail"} split /:/, $ENV{PATH};
2018-01-18 14:13:17 +00:00
foreach (@sendmail_paths) {
if (-x $_) {
2021-08-17 08:29:39 +00:00
$sendmail_cmd = $_;