diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-25 20:41:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-25 20:41:54 +0200 |
commit | bd170409998f293bc35db5569a4f3cfc432f9c2f (patch) | |
tree | 0823deb8d91a268bbcdabfcecf63894aca7612be /core | |
parent | 713c007fc2b3dc18e86a57f73b86e814868259db (diff) | |
download | prosody-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')
-rw-r--r-- | core/modulemanager.lua | 2 |
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 |