mod_block_subscribes/mod_block_subscribes.lua
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
Thu, 23 Dec 2021 17:44:35 +0100
changeset 4838 7ed2467c9bb5
parent 926 f88381a39c56
permissions -rw-r--r--
mod_bookmarks2: Add simple support for legacy PEP queries This implements the publish and items PubSub queries of XEP-0048 version 1.1, ignoring item id, publish-options, and any other query.

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