Software / code / prosody-modules
File
mod_audit_auth/mod_audit_auth.lua @ 5040:fa99279f9d40
mod_invites_adhoc: Set non-nil defaults for options, fixes traceback (thanks Martin)
Fixes an error when attempting to call the :empty() method on the
default implicit default nil value.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 14 Sep 2022 17:21:42 +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)