We forgot to pass the Debug option through to Net::SMTP::SSL->new -- which is the same as Net::SMTP->new. This meant that with security set to SSL, we would never enable debug output. Pass through the flag. Signed-off-by: Thomas Rast <tr@xxxxxxxxxxxxx> --- git-send-email.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/git-send-email.perl b/git-send-email.perl index 3782c3b..f7468b6 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1217,6 +1217,7 @@ sub send_message { $smtp ||= Net::SMTP::SSL->new($smtp_server, Hello => $smtp_domain, Port => $smtp_server_port, + Debug => $debug_net_smtp, ssl_verify_params()); } else { -- 1.8.5.rc3.5.g2a1fe2f -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html