Merge branch 'md/smtp-tls-hello-again' into maint

* md/smtp-tls-hello-again:
  send-email: Honour SMTP domain when using TLS
This commit is contained in:
Junio C Hamano 2011-11-01 16:12:19 -07:00
Родитель 0814d6e554 155b940f7a
Коммит ac7acaa5d9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}