Changeset

2834:f5cd7ee409eb

mod_presence: Automatically deny presence requests for hosts, fixes traceback in #153
author Matthew Wild <mwild1@gmail.com>
date Mon, 18 Jan 2010 17:14:41 +0000
parents 2833:a82bd02d5918
children 2835:ff5039708b19
files plugins/mod_presence.lua
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;