mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_s2s: Improve log message about forbidding insecure connections
This new wording generator is nice.
This commit is contained in:
parent
3d63c139e6
commit
39cc0ec451
1 changed files with 1 additions and 1 deletions
|
@ -763,8 +763,8 @@ function check_auth_policy(event)
|
|||
end
|
||||
|
||||
if must_secure and (session.cert_chain_status ~= "valid" or session.cert_identity_status ~= "valid") then
|
||||
module:log("warn", "Forbidding insecure connection to/from %s", host or session.ip or "(unknown host)");
|
||||
local reason = friendly_cert_error(session);
|
||||
module:log("warn", "Forbidding insecure connection to/from %s because its certificate %s", host or session.ip or "(unknown host)", reason);
|
||||
-- XEP-0178 recommends closing outgoing connections without warning
|
||||
-- but does not give a rationale for this.
|
||||
-- In practice most cases are configuration mistakes or forgotten
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue