# HG changeset patch # User Matthew Wild # Date 1344127584 -3600 # Node ID 954532e273befb27f59bd84361f18b12ec97518e # Parent 889e7a60a2e7c982fe1d7c8b41d5899757206c41 mod_block_strangers: Module to block message and iqs from people not on your roster diff -r 889e7a60a2e7 -r 954532e273be mod_block_strangers/mod_block_strangers.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_block_strangers/mod_block_strangers.lua Sun Aug 05 01:46:24 2012 +0100 @@ -0,0 +1,21 @@ + +local jid_split = require "util.jid".split; +local jid_bare = require "util.jid".bare; +local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed; + +function check_subscribed(event) + local stanza = event.stanza; + local to_user, to_host, to_resource = jid_split(stanza.attr.to); + local from_jid = jid_bare(stanza.attr.from); + if to_user and not is_contact_subscribed(to_user, to_host, from_jid) then + if to_resource and stanza.attr.type == "groupchat" then + return nil; -- Pass through + end + return true; -- Drop stanza + end +end + +module:hook("message/bare", check_subscribed, 100); +module:hook("message/full", check_subscribed, 100); + +module:hook("iq/full", check_subscribed, 100);