mod_csi_simple_compat/mod_csi_simple_compat.lua
author Kim Alvefur <zash@zash.se>
Sun, 28 Aug 2022 15:50:39 +0200
changeset 5026 97d34d520cfa
parent 4010 fcea7cf91702
permissions -rw-r--r--
mod_watch_spam_reports: Fix traceback due to misplaced parenthesis (thanks Menel) Just like in 964de9997552

local st = require "util.stanza";

local important_payloads = module:get_option_set("csi_important_payloads", { });

module:hook("csi-is-stanza-important", function (event)
	local stanza = event.stanza;
	if st.is_stanza(stanza) then
		for important in important_payloads do
			if stanza:find(important) then
				return true;
			end
		end
	end
end);