mod_watch_spam_reports/mod_watch_spam_reports.lua
author Martin Dosch <martin@mdosch.de>
Tue, 16 Jun 2020 11:21:58 +0200
changeset 4050 d518f97dad6f
child 4055 91e2e510e17c
permissions -rw-r--r--
mod_watch_spam_reports: Module to notify admins about incoming XEP-0377 spam reports

local st = require "util.stanza";
local admins = module:get_option_inherited_set("admins");
local host = module.host;

module:depends("spam_reporting")

module:hook("spam_reporting/spam-report", function(event)
	for admin_jid in admins
		do
			module:send(st.message({from=host,
			type="chat",to=admin_jid},
			event.stanza.attr.from.." reported "..event.jid.." as spammer: "..event.reason));
		end
end)