diff options
author | Florian Klink <flokli@flokli.de> | 2017-11-28 01:49:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-28 10:14:30 +0900 |
commit | 1ab2fd4f397d8891f5345f876d42ab360859bcca (patch) | |
tree | 7e9498515027834a3c1a892bff184b5f1105e4ba /Documentation/git-send-email.txt | |
parent | 5f9953d2c365bffed6f9ee0c6966556bd4d7e2f4 (diff) | |
download | git-1ab2fd4f397d8891f5345f876d42ab360859bcca.tar.gz |
git-send-email: honor $PATH for sendmail binaryfk/sendmail-from-path
This extends git-send-email to also consider sendmail binaries in $PATH
after checking the (fixed) list of /usr/sbin and /usr/lib, and before
falling back to localhost.
Signed-off-by: Florian Klink <flokli@flokli.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-send-email.txt')
-rw-r--r-- | Documentation/git-send-email.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt index bac9014ac7..8060ea35c5 100644 --- a/Documentation/git-send-email.txt +++ b/Documentation/git-send-email.txt @@ -203,9 +203,9 @@ a password is obtained using 'git-credential'. specify a full pathname of a sendmail-like program instead; the program must support the `-i` option. Default value can be specified by the `sendemail.smtpServer` configuration - option; the built-in default is `/usr/sbin/sendmail` or - `/usr/lib/sendmail` if such program is available, or - `localhost` otherwise. + option; the built-in default is to search for `sendmail` in + `/usr/sbin`, `/usr/lib` and $PATH if such program is + available, falling back to `localhost` otherwise. --smtp-server-port=<port>:: Specifies a port different from the default port (SMTP |