mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
38060a5ccf
commit
5a07b39c7f
2 changed files with 12 additions and 2 deletions
|
@ -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...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue