aboutsummaryrefslogtreecommitdiffstats
path: root/core/servermanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/servermanager.lua')
-rw-r--r--core/servermanager.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/servermanager.lua b/core/servermanager.lua
deleted file mode 100644
index c1e075db..00000000
--- a/core/servermanager.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-
-local st = require "util.stanza";
-local send = require "core.sessionmanager".send_to_session;
-local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas';
-
-require "modulemanager"
-
--- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.)
-function handle_stanza(origin, stanza)
- -- Use plugins
- if not modulemanager.handle_stanza(origin, stanza) then
- if stanza.name == "iq" then
- local reply = st.reply(stanza);
- reply.attr.type = "error";
- reply:tag("error", { type = "cancel" })
- :tag("service-unavailable", { xmlns = xmlns_stanzas });
- send(origin, reply);
- end
- end
-end