modulemanager: Load mod_saslauth on components by default

This commit is contained in:
Kim Alvefur 2014-03-22 12:42:01 +01:00
parent 8e115ce876
commit 461da4b3b6

View file

@ -30,7 +30,7 @@ pcall = function(f, ...)
end
local autoload_modules = {"presence", "message", "iq", "offline", "c2s", "s2s"};
local component_inheritable_modules = {"tls", "dialback", "iq", "s2s"};
local component_inheritable_modules = {"tls", "saslauth", "dialback", "iq", "s2s"};
-- We need this to let modules access the real global namespace
local _G = _G;