Software /
code /
prosody-modules
File
mod_audit_auth/mod_audit_auth.lua @ 5760:72b0fa7e36dc
mod_storage_s3: Sort archive items by LastModified
Otherwise they would get sorted by who knows what, probably the path.
Also not sure if the timestamp comparisons were correct before.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 27 Nov 2023 14:27:35 +0100 |
parent | 5735:b357ff3d0c8a |
child | 5771:dfbced5e54b9 |
line wrap: on
line source
local jid = require"util.jid"; module:depends("audit"); -- luacheck: read globals module.audit module:hook("authentication-failure", function(event) local session = event.session; module:audit(jid.join(session.sasl_handler.username, module.host), "authentication-failure", { session = session, }); end) module:hook("authentication-success", function(event) local session = event.session; module:audit(jid.join(session.sasl_handler.username, module.host), "authentication-success", { session = session, }); end)