mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Improve log message when no SASL mechanisms offered (thanks hexa)
This commit is contained in:
parent
15d5dffa63
commit
4fd11623dd
1 changed files with 2 additions and 1 deletions
|
@ -275,7 +275,8 @@ module:hook("stream-features", function(event)
|
||||||
if mechanisms[1] then
|
if mechanisms[1] then
|
||||||
features:add_child(mechanisms);
|
features:add_child(mechanisms);
|
||||||
elseif not next(sasl_mechanisms) then
|
elseif not next(sasl_mechanisms) then
|
||||||
log("warn", "No available SASL mechanisms, verify that the configured authentication module is working");
|
local authmod = module:get_option_string("authentication", "internal_plain");
|
||||||
|
log("error", "No available SASL mechanisms, verify that the configured authentication module '%s' is loaded and configured correctly", authmod);
|
||||||
else
|
else
|
||||||
log("warn", "All available authentication mechanisms are either disabled or not suitable for an insecure connection");
|
log("warn", "All available authentication mechanisms are either disabled or not suitable for an insecure connection");
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue