changeset 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 72799c330986
children 3a7349aa95c7
files mod_log_sasl_mech/mod_log_sasl_mech.lua
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mod_log_sasl_mech/mod_log_sasl_mech.lua	Mon Dec 04 21:36:35 2023 +0100
+++ b/mod_log_sasl_mech/mod_log_sasl_mech.lua	Mon Dec 04 21:38:27 2023 +0100
@@ -1,6 +1,7 @@
 
 module:hook("authentication-success", function (event)
 	local session = event.session;
-	local sasl_handler = session.sasl_handler;
-	session.log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
+	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);