Fixed: Unhandled stanza handling

This commit is contained in:
Waqas Hussain 2008-10-22 21:20:29 +05:00
parent 9595202d47
commit dffccde8c2

View file

@ -10,11 +10,13 @@ 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);
if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
send(origin, st.error_reply(stanza, "cancel", "service-unavailable"));
end
elseif stanza.name == "message" then
send(origin, st.error_reply(stanza, "cancel", "service-unavailable"));
elseif stanza.name ~= "presence" then
error("Unknown stanza");
end
end
end