mod_traceback/mod_traceback.lua
author Stefan `Sec` Zehl <sec@42.org>
Tue, 08 Oct 2013 16:38:40 +0000
changeset 3029 5b8983e100da
parent 2777 7a4e8dbbd30d
child 5855 dde9d21a599f
permissions -rw-r--r--
mod_vcard_command: a simplistic way to get and set vcard data for registered users Use "prosodyctl get user@example.com" to print the XML to stdout, and "prosodyctl set user@example.com /file/name" to set the vcard info from an xml file.

module:set_global();

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

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