diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-10-09 00:22:33 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-10-09 00:22:33 +0100 |
commit | 74eb36a4623ff2f3f8d84391f17932e532a36270 (patch) | |
tree | 5e24ef1476c515c9e41e18b5f3336349aee5e00b /core/componentmanager.lua | |
parent | c841ad19668306a797bb70ed15d946590cca2b50 (diff) | |
download | prosody-74eb36a4623ff2f3f8d84391f17932e532a36270.tar.gz prosody-74eb36a4623ff2f3f8d84391f17932e532a36270.zip |
componentmanager: Auto-load mod_tls for components #hack
Diffstat (limited to 'core/componentmanager.lua')
-rw-r--r-- | core/componentmanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua index 30ffd8a8..6f5e28e6 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -101,6 +101,7 @@ function register_component(host, component, session) disco_items:set(host:sub(host:find(".", 1, true)+1), host, true); end modulemanager.load(host, "dialback"); + modulemanager.load(host, "tls"); log("debug", "component added: "..host); return session or hosts[host]; else |