Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-19 08:59:10 +0400
committerJunio C Hamano <gitster@pobox.com>2011-10-19 08:59:10 +0400
commit54633cd53bf22672aed900a2a9df5d4f92548091 (patch)
treea158d0d20c870de6af15dd0dad55f1cf1adbf193 /git-send-email.perl
parent2c4cf667b0b516ffd547e58d7aaf7b584929715a (diff)
parent155b940f7a117e9bba1b62e442c9e6e5853a3c0d (diff)
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-xgit-send-email.perl2
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;
}