mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_s2s_auth_certs: Warn about lack of certificate (Mostly jabberd14 not sending a client certificate)
This commit is contained in:
parent
f475cd3658
commit
a2ce0553f8
1 changed files with 32 additions and 29 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue