Backed out changeset 89c42aff8510: The problem in ejabberd has reportedly been resolved and this change causes more problems than it solves (fixes #1006)

This commit is contained in:
Kim Alvefur 2018-02-04 01:13:27 +01:00
parent 38060a5ccf
commit 5a07b39c7f
2 changed files with 12 additions and 2 deletions

View file

@ -189,6 +189,14 @@ 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...");