mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_saslauth: Pass SASL EXTERNAL failure reason on to be used in error bounces
This commit is contained in:
parent
477f77e250
commit
e925f5a34a
1 changed files with 2 additions and 1 deletions
|
@ -110,11 +110,12 @@ module:hook_tag(xmlns_sasl, "failure", function (session, stanza)
|
|||
module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, condition);
|
||||
|
||||
session.external_auth = "failed"
|
||||
session.external_auth_failure_reason = condition;
|
||||
end, 500)
|
||||
|
||||
module:hook_stanza(xmlns_sasl, "failure", function (session, stanza)
|
||||
session.log("debug", "No fallback from SASL EXTERNAL failure, giving up");
|
||||
session:close();
|
||||
session:close(nil, session.external_auth_failure_reason);
|
||||
return true;
|
||||
end, 90)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue