mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fixed: Unhandled stanza handling
This commit is contained in:
parent
9595202d47
commit
dffccde8c2
1 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue