Mercurial > prosody-modules
diff mod_audit/mod_audit.lua @ 5118:7bce75e74f86
Merge
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 18 Dec 2022 15:30:02 +0100 |
parents | 4a5837591380 |
children | d9577083c5f5 |
line wrap: on
line diff
--- a/mod_audit/mod_audit.lua Fri Dec 16 22:30:47 2022 +0000 +++ b/mod_audit/mod_audit.lua Sun Dec 18 15:30:02 2022 +0100 @@ -1,5 +1,8 @@ module:set_global(); +local audit_log_limit = module:get_option_number("audit_log_limit", 10000); +local cleanup_after = module:get_option_string("audit_log_expires_after", "2w"); + local time_now = os.time; local st = require "util.stanza"; local moduleapi = require "core.moduleapi"; @@ -81,5 +84,3 @@ function moduleapi.audit(module, user, event_type, extra) audit(module.host, user, "mod_" .. module:get_name(), event_type, extra); end - -module:hook("audit", audit, 0);