mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Never send empty <mechanisms/>.
This commit is contained in:
parent
cf01eb3632
commit
90a5f85bf3
1 changed files with 3 additions and 1 deletions
|
@ -248,8 +248,10 @@ 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(origin.sasl_handler:mechanisms()) do
|
||||
for mechanism in pairs(mechanisms) do
|
||||
if mechanism ~= "PLAIN" or origin.secure or allow_unencrypted_plain_auth then
|
||||
features:tag("mechanism"):text(mechanism):up();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue