diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-11-01 16:12:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-01 16:12:19 -0700 |
commit | ac7acaa5d98077f7cf900461d5d7ddfebdcc08d3 (patch) | |
tree | 8f6706cb339376d24c47b86f08603dc9de3119a7 | |
parent | 0814d6e554c45636f41856cc2204abe2f661560c (diff) | |
parent | 155b940f7a117e9bba1b62e442c9e6e5853a3c0d (diff) | |
download | git-ac7acaa5d98077f7cf900461d5d7ddfebdcc08d3.tar.gz git-ac7acaa5d98077f7cf900461d5d7ddfebdcc08d3.tar.xz |
Merge branch 'md/smtp-tls-hello-again' into maint
* md/smtp-tls-hello-again:
send-email: Honour SMTP domain when using TLS
-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 98ab33aae..5790744ae 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1079,7 +1079,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; } |