mod_presence: Automatically deny presence requests for hosts, fixes traceback in #153

Mon, 18 Jan 2010 17:14:41 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 18 Jan 2010 17:14:41 +0000
changeset 2461
a6a50cf0e444
parent 2460
2a80ba15c210
child 2462
2d81cc25b5a6

mod_presence: Automatically deny presence requests for hosts, fixes traceback in #153

plugins/mod_presence.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_presence.lua	Mon Jan 18 16:31:57 2010 +0000
+++ b/plugins/mod_presence.lua	Mon Jan 18 17:14:41 2010 +0000
@@ -309,6 +309,13 @@
 	end
 	return true;
 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)
 	-- inbound presence to full JID recieved
 	local origin, stanza = data.origin, data.stanza;

mercurial