diff mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1393:4baaa5a66a5a

mod_log_sasl_mech: Log SASL mechanism attached to session
author Kim Alvefur <zash@zash.se>
date Fri, 25 Apr 2014 17:11:33 +0200
parents 2d061333d0c2
children 5ff8022466ab
line wrap: on
line diff
--- a/mod_log_sasl_mech/mod_log_sasl_mech.lua	Thu Apr 24 18:34:10 2014 +0200
+++ b/mod_log_sasl_mech/mod_log_sasl_mech.lua	Fri Apr 25 17:11:33 2014 +0200
@@ -1,5 +1,6 @@
 
 module:hook("authentication-success", function (event)
-	local sasl_handler = event.session.sasl_handler;
-	module:log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
+	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");
 end);