mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Never send empty <mechanisms/>, for real this time.
This commit is contained in:
parent
4b79571a6f
commit
afd972f05b
1 changed files with 4 additions and 6 deletions
|
@ -248,15 +248,13 @@ module:hook("stream-features", function(event)
|
|||
return;
|
||||
end
|
||||
origin.sasl_handler = usermanager_get_sasl_handler(module.host);
|
||||
local mechanisms = origin.sasl_handler:mechanisms();
|
||||
if not next(mechanisms) then return; end
|
||||
features:tag("mechanisms", mechanisms_attr);
|
||||
for mechanism in pairs(mechanisms) do
|
||||
local mechanisms = st.stanza("mechanisms", mechanisms_attr);
|
||||
for mechanism in pairs(origin.sasl_handler:mechanisms()) do
|
||||
if mechanism ~= "PLAIN" or origin.secure or allow_unencrypted_plain_auth then
|
||||
features:tag("mechanism"):text(mechanism):up();
|
||||
mechanisms:tag("mechanism"):text(mechanism):up();
|
||||
end
|
||||
end
|
||||
features:up();
|
||||
if mechanisms[1] then features:add_child(mechanisms); end
|
||||
else
|
||||
features:tag("bind", bind_attr):tag("required"):up():up();
|
||||
features:tag("session", xmpp_session_attr):tag("optional"):up():up();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue