view mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua @ 4822:b4cc6ee9fc8c

mod_export_skeletons: Add a standalone filter script Full XML goes in. Skeletons come out.
author Kim Alvefur <zash@zash.se>
date Fri, 10 Dec 2021 16:36:56 +0100
parents aed47ebd26d3
children
line wrap: on
line source

module:hook("message/host", function (event)
	local stanza = event.stanza;
	if #stanza.tags == 1 and stanza.tags[1].attr.xmlns == "http://jabber.org/protocol/chatstates" then
		return true;
	end
end, -10);