We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d78cba4 + 9d60524 commit 7aaff08Copy full SHA for 7aaff08
1 file changed
git-send-email.perl
@@ -1332,6 +1332,13 @@ sub send_message {
1332
require Net::SMTP::SSL;
1333
$smtp_domain ||= maildomain();
1334
require IO::Socket::SSL;
1335
+
1336
+ # Suppress "variable accessed once" warning.
1337
+ {
1338
+ no warnings 'once';
1339
+ $IO::Socket::SSL::DEBUG = 1;
1340
+ }
1341
1342
# Net::SMTP::SSL->new() does not forward any SSL options
1343
IO::Socket::SSL::set_client_defaults(
1344
ssl_verify_params());
0 commit comments