mirror of
https://github.com/git/git.git
synced 2024-10-30 22:07:53 +01:00
Merge branch 'jk/send-email-ssl-errors' into maint
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:
commit
06b5c9304d
1 changed files with 7 additions and 0 deletions
|
@ -1318,6 +1318,13 @@ sub send_message {
|
|||
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());
|
||||
|
|
Loading…
Reference in a new issue