aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-07-25 20:41:54 +0200
committerKim Alvefur <zash@zash.se>2014-07-25 20:41:54 +0200
commitbd170409998f293bc35db5569a4f3cfc432f9c2f (patch)
tree0823deb8d91a268bbcdabfcecf63894aca7612be /core/modulemanager.lua
parent713c007fc2b3dc18e86a57f73b86e814868259db (diff)
downloadprosody-bd170409998f293bc35db5569a4f3cfc432f9c2f.tar.gz
prosody-bd170409998f293bc35db5569a4f3cfc432f9c2f.zip
mod_s2s_auth_certs: Split PKIX based certificate checking from mod_s2s into new plugin
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index eb1ce733..b5674ece 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -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