mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Reply to unhandled iq's with service-unavailable
This commit is contained in:
parent
9d19964c82
commit
8d8cdb8574
1 changed files with 13 additions and 1 deletions
|
@ -1,8 +1,20 @@
|
|||
|
||||
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
|
||||
return modulemanager.handle_stanza(origin, stanza);
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue