mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_dialback, mod_saslauth: Remove broken fallback to dialback on SASL EXTERNAL failure
This commit is contained in:
parent
b58d3248b7
commit
d33c824d1f
2 changed files with 2 additions and 12 deletions
|
@ -99,12 +99,10 @@ module:hook_stanza(xmlns_sasl, "failure", function (session, stanza)
|
|||
module:log("info", "SASL EXTERNAL with %s failed", session.to_host)
|
||||
-- TODO: Log the failure reason
|
||||
session.external_auth = "failed"
|
||||
session:close();
|
||||
return true;
|
||||
end, 500)
|
||||
|
||||
module:hook_stanza(xmlns_sasl, "failure", function (session, stanza)
|
||||
-- TODO: Dialback wasn't loaded. Do something useful.
|
||||
end, 90)
|
||||
|
||||
module:hook_stanza("http://etherx.jabber.org/streams", "features", function (session, stanza)
|
||||
if session.type ~= "s2sout_unauthed" or not session.secure then return; end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue