diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-10-18 21:59:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-18 21:59:10 -0700 |
commit | 54633cd53bf22672aed900a2a9df5d4f92548091 (patch) | |
tree | a158d0d20c870de6af15dd0dad55f1cf1adbf193 /git-send-email.perl | |
parent | 2c4cf667b0b516ffd547e58d7aaf7b584929715a (diff) | |
parent | 155b940f7a117e9bba1b62e442c9e6e5853a3c0d (diff) | |
download | git-54633cd53bf22672aed900a2a9df5d4f92548091.tar.gz |
Merge branch 'md/smtp-tls-hello-again'
* md/smtp-tls-hello-again:
send-email: Honour SMTP domain when using TLS
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | git-send-email.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 6885dfa1b9..d491db92c9 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1098,7 +1098,7 @@ X-Mailer: git-send-email $gitversion $smtp_encryption = ''; # Send EHLO again to receive fresh # supported commands - $smtp->hello(); + $smtp->hello($smtp_domain); } else { die "Server does not support STARTTLS! ".$smtp->message; } |