mod_saslauth: Set a nicer bounce error explaining SASL EXTERNAL failures

Better than the previous string concatenation of SASL failure condition
and optional text sent by the remote server.

Would be nice to have a text per condition, other than the probably most
common 'not-authorized'.
This commit is contained in:
Kim Alvefur 2019-12-07 22:55:51 +01:00
parent 0de6ce740e
commit 9589da30b6

View file

@ -120,7 +120,10 @@ end, 500)
module:hook_tag(xmlns_sasl, "failure", function (session, stanza) -- luacheck: ignore 212/stanza
session.log("debug", "No fallback from SASL EXTERNAL failure, giving up");
session:close(nil, session.external_auth_failure_reason);
session:close(nil, session.external_auth_failure_reason, errors.new({
type = "wait", condition = "remote-server-timeout",
text = "Could not authenticate to remote server",
}, { session = session, sasl_failure = session.external_auth_failure_reason, }));
return true;
end, 90)