зеркало из https://github.com/microsoft/git.git
Merge branch 'jk/send-email-ssl-errors'
Improve error reporting when SMTP TLS fails. * jk/send-email-ssl-errors: send-email: enable SSL level 1 debug output
This commit is contained in:
Коммит
7aaff08f39
|
@ -1332,6 +1332,13 @@ Message-Id: $message_id
|
|||
require Net::SMTP::SSL;
|
||||
$smtp_domain ||= maildomain();
|
||||
require IO::Socket::SSL;
|
||||
|
||||
# Suppress "variable accessed once" warning.
|
||||
{
|
||||
no warnings 'once';
|
||||
$IO::Socket::SSL::DEBUG = 1;
|
||||
}
|
||||
|
||||
# Net::SMTP::SSL->new() does not forward any SSL options
|
||||
IO::Socket::SSL::set_client_defaults(
|
||||
ssl_verify_params());
|
||||
|
|
Загрузка…
Ссылка в новой задаче