mod_log_mark/mod_log_mark.lua
author Matthew Wild <mwild1@gmail.com>
Sun, 28 Aug 2022 11:18:10 +0100
changeset 5024 6a36dae4a88d
parent 2178 7be158b3376f
permissions -rw-r--r--
mod_sasl2: Return true to indicate challenge was handled successfully

module:set_global();

local log = _G.log;

module:add_timer(60-os.date("%S"), function (now)
	log("info", "-- MARK --");
	return 90 - ((now + 30) % 60);
end);