mod_tls: Add "support" for <failure> by closing gracefully

Nicer than the "unsupported stanza type" error we get otherwise.
This commit is contained in:
Kim Alvefur 2021-05-21 19:04:01 +02:00
parent 15d7143bb3
commit d7b7a25e73

View file

@ -174,3 +174,9 @@ module:hook_tag(xmlns_starttls, "proceed", function (session, stanza) -- luachec
return true;
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);