mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
0de6ce740e
commit
9589da30b6
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue