diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/modulemanager.lua | 1 | ||||
-rw-r--r-- | core/stanza_router.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 696e0f08..1ad1f990 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -49,6 +49,7 @@ function loadall() load("legacyauth"); load("roster"); load("register"); + load("tls"); end function load(name) diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 89bea131..489bb96d 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -11,6 +11,7 @@ require "util.jid" local jid_split = jid.split; function core_process_stanza(origin, stanza) + log("debug", "Received: "..tostring(stanza)) local to = stanza.attr.to; if not to or (hosts[to] and hosts[to].type == "local") then |