view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 5772:5ff8022466ab

mod_log_sasl_mech: Handle auth event from other than mod_saslauth E.g. mod_http_oauth2
author Kim Alvefur <zash@zash.se>
date Mon, 04 Dec 2023 21:38:27 +0100
parents 4baaa5a66a5a
children
line wrap: on
line source


module:hook("authentication-success", function (event)
	local session = event.session;
	local sasl_handler = session and session.sasl_handler;
	local log = session and session.log or module._log
	log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
end);