view mod_log_mark/mod_log_mark.lua @ 2112:0890c4860f14

mod_register_dnsbl: Initial commit of module to check users registering against an DNS block list
author Kim Alvefur <zash@zash.se>
date Thu, 17 Mar 2016 13:05:38 +0100
parents 02390829df1a
children d15df55f0a63
line wrap: on
line source

local log = _G.log;

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