mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Add "support" for <failure> by closing gracefully
Nicer than the "unsupported stanza type" error we get otherwise.
This commit is contained in:
parent
15d7143bb3
commit
d7b7a25e73
1 changed files with 6 additions and 0 deletions
|
@ -174,3 +174,9 @@ module:hook_tag(xmlns_starttls, "proceed", function (session, stanza) -- luachec
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
module:hook_tag(xmlns_starttls, "failure", function (session, stanza) -- luacheck: ignore 212/stanza
|
||||||
|
module:log("warn", "TLS negotiation with %s failed.", session.to_host);
|
||||||
|
session:close(nil, "TLS negotiation failed");
|
||||||
|
return false;
|
||||||
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue