# HG changeset patch # User Matthew Wild # Date 1353610750 0 # Node ID f88381a39c56a7c03e020e3c6a4947d89237dc4f # Parent 1c886affb375be4c7941a34b5a02c3915d556fe7 mod_block_subscribes: Block inbound and outbound subscription requests (useful to prevent implicit roster modification) diff -r 1c886affb375 -r f88381a39c56 mod_block_subscribes/mod_block_subscribes.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_block_subscribes/mod_block_subscribes.lua Thu Nov 22 18:59:10 2012 +0000 @@ -0,0 +1,13 @@ +local allowed_presence_types = { probe = true, unavailable = true }; + +function filter_presence(event) + local stanza = event.stanza; + local presence_type = stanza.attr.type; + if presence_type == nil or allowed_presence_types[presence_type] then + return; + end + return true; -- Drop +end + +module:hook("pre-presence/bare", filter_presence, 200); -- Client sending +module:hook("presence/bare", filter_presence, 200); -- Client receiving