view mod_traceback/mod_traceback.lua @ 6360:3e8bd71d39bb

mod_http_muc_log: Ignore fallback body next to XEP-0444: Message Reactions Some clients send a quote reply along with XEP-0444 in order to accommodate legacy clients. This however takes up some space and the reaction is shown twice. This is a matter of some debate with diverging opinions about whether this should be done at all and how to handle this.
author Kim Alvefur <zash@zash.se>
date Thu, 15 Jan 2026 16:03:01 +0100
parents dde9d21a599f
children
line wrap: on
line source

module:set_global();

local traceback = require "util.debug".traceback;

local signal = module:get_option_string(module.name, "SIGUSR1");
module:hook("signal/" .. signal, function()
	module:log("info", "Received %s, writing traceback", signal);
	local f = io.open(prosody.paths.data .. "/traceback.txt", "a+");
	f:write(traceback(), "\n");
	f:close();
end);