aboutsummaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-11-17 22:01:05 +0000
committerJeff King <peff@peff.net>2015-11-20 08:02:06 -0500
commit6e07a3b51b43ce0b573f5411524ad4fd423eaf75 (patch)
tree8d964e930991caadc05ee44212c62a2f779b7cb5 /git-send-email.perl
parent0c83680e9c047170614fb08ef222ea4f460e514d (diff)
downloadgit-6e07a3b51b43ce0b573f5411524ad4fd423eaf75.tar.gz
git-6e07a3b51b43ce0b573f5411524ad4fd423eaf75.tar.xz
send-email: expand path in sendemail.smtpsslcertpath config
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>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index e907e0eac..719c71536 100755
--- 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