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 | Merge branch 'jk/pull-rebase-with-work-tree' into maint (diff) | |
| parent | send-email: Honour SMTP domain when using TLS (diff) | |
| download | git-ac7acaa5d98077f7cf900461d5d7ddfebdcc08d3.tar.gz git-ac7acaa5d98077f7cf900461d5d7ddfebdcc08d3.zip | |
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 98ab33aae7..5790744ae3 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; } |
