My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c83680
)
send-email: expand path in sendemail.smtpsslcertpath config
author
John Keeping
<john@keeping.me.uk>
Tue, 17 Nov 2015 22:01:05 +0000
(22:01 +0000)
committer
Jeff King
<peff@peff.net>
Fri, 20 Nov 2015 13:02:06 +0000
(08:02 -0500)
As it says in the name, the SSL certificate path is a path so treat it
as one and support tilde-expansion.
Signed-off-by: John Keeping <john@keeping.me.uk>
Signed-off-by: Jeff King <peff@peff.net>
git-send-email.perl
patch
|
blob
|
history
diff --git
a/git-send-email.perl
b/git-send-email.perl
index
e907e0e
..
719c715
100755
(executable)
--- a/
git-send-email.perl
+++ b/
git-send-email.perl
@@
-239,7
+239,6
@@
my %config_settings = (
"smtpserveroption" => \@smtp_server_options,
"smtpuser" => \$smtp_authuser,
"smtppass" => \$smtp_authpass,
- "smtpsslcertpath" => \$smtp_ssl_cert_path,
"smtpdomain" => \$smtp_domain,
"smtpauth" => \$smtp_auth,
"to" => \@initial_to,
@@
-259,6
+258,7
@@
my %config_settings = (
my %config_path_settings = (
"aliasesfile" => \@alias_files,
+ "smtpsslcertpath" => \$smtp_ssl_cert_path,
);
# Handle Uncouth Termination