mod_s2s_auth_certs: Warn about lack of certificate (Mostly jabberd14 not sending a client certificate)

This commit is contained in:
Kim Alvefur 2014-08-29 02:24:49 +02:00
parent f475cd3658
commit a2ce0553f8

View file

@ -7,9 +7,13 @@ local log = module._log;
module:hook("s2s-check-certificate", function(event)
local session, host, cert = event.session, event.host, event.cert;
local conn = session.conn:socket();
if cert then
local log = session.log or log;
if not cert then
log("warn", "No certificate provided by %s", host or "unknown host");
return;
end
local chain_valid, errors;
if conn.getpeerverification then
chain_valid, errors = conn:getpeerverification();
@ -41,6 +45,5 @@ module:hook("s2s-check-certificate", function(event)
log("debug", "certificate identity validation result: %s", session.cert_identity_status);
end
end
end
end, 509);