Software /
code /
prosody-modules
File
mod_audit_auth/mod_audit_auth.lua @ 5687:4b052598e435
mod_push2: restore offline message hook
Filtering is mostly handled in handle_notify_request now
author | Stephen Paul Weber <singpolyma@singpolyma.net> |
---|---|
date | Thu, 21 Sep 2023 18:47:27 -0500 |
parent | 4933:08dea42a302a |
child | 5735:b357ff3d0c8a |
line wrap: on
line source
module:depends("audit"); -- luacheck: read globals module.audit module:hook("authentication-failure", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-failure", { session = session, }); end) module:hook("authentication-success", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-success", { session = session, }); end)