mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_presence: Automatically deny presence requests for hosts, fixes traceback in #153
This commit is contained in:
parent
f4e886e717
commit
649aefc28e
1 changed files with 7 additions and 0 deletions
|
@ -309,6 +309,13 @@ module:hook("presence/bare", function(data)
|
||||||
end
|
end
|
||||||
return true;
|
return true;
|
||||||
end);
|
end);
|
||||||
|
module:hook("presence/host", function (data)
|
||||||
|
local stanza = data.stanza;
|
||||||
|
local reply = st.reply(stanza);
|
||||||
|
reply.attr.type = "unsubscribed";
|
||||||
|
handle_inbound_presence_subscriptions_and_probes(data.origin, reply, jid_bare(stanza.attr.to), jid_bare(stanza.attr.from), core_route_stanza);
|
||||||
|
return true;
|
||||||
|
end);
|
||||||
module:hook("presence/full", function(data)
|
module:hook("presence/full", function(data)
|
||||||
-- inbound presence to full JID recieved
|
-- inbound presence to full JID recieved
|
||||||
local origin, stanza = data.origin, data.stanza;
|
local origin, stanza = data.origin, data.stanza;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue