mod_s2s_auth_certs: Split PKIX based certificate checking from mod_s2s into new plugin

This commit is contained in:
Kim Alvefur 2014-07-25 20:41:54 +02:00
parent 713c007fc2
commit bd17040999
3 changed files with 46 additions and 34 deletions

View file

@ -29,7 +29,7 @@ pcall = function(f, ...)
return xpcall(function() return f(unpack(params, 1, n)) end, function(e) return tostring(e).."\n"..debug_traceback(); end);
end
local autoload_modules = {prosody.platform, "presence", "message", "iq", "offline", "c2s", "s2s"};
local autoload_modules = {prosody.platform, "presence", "message", "iq", "offline", "c2s", "s2s", "s2s_auth_certs"};
local component_inheritable_modules = {"tls", "saslauth", "dialback", "iq", "s2s"};
-- We need this to let modules access the real global namespace