mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
|
@ -176,14 +176,6 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
|
|||
end
|
||||
end);
|
||||
|
||||
module:hook_stanza("urn:ietf:params:xml:ns:xmpp-sasl", "failure", function (origin, stanza)
|
||||
if origin.external_auth == "failed" then
|
||||
module:log("debug", "SASL EXTERNAL failed, falling back to dialback");
|
||||
initiate_dialback(origin);
|
||||
return true;
|
||||
end
|
||||
end, 100);
|
||||
|
||||
module:hook_stanza(xmlns_stream, "features", function (origin, stanza)
|
||||
if not origin.external_auth or origin.external_auth == "failed" then
|
||||
module:log("debug", "Initiating dialback...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue