Mercurial > prosody-modules
view mod_audit_auth/mod_audit_auth.lua @ 5495:7998b49d6512
mod_http_oauth2: Create proper template for OOB code delivery
This also improves security by reusing the security and cache headers,
where mod_http_errors/http-message doesn't add such headers.
Colors selected by taking rotating the error colors, rrggbb -> ggbbrr
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 31 May 2023 03:44:04 +0200 |
parents | 08dea42a302a |
children | 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)