Software / code / prosody-modules
File
mod_audit_auth/mod_audit_auth.lua @ 5411:b3158647cb36
mod_strict_https: Update to use modern APIs instead of monkey patching
Updates one of the least recently updated modules :)
Mapping HTTP Host to Prosody host remains awkward.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 03 May 2023 10:16:15 +0200 |
| 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)