# HG changeset patch # User Kim Alvefur # Date 1398438693 -7200 # Node ID 4baaa5a66a5a30fa3e0c8fcfd52c789ce163a616 # Parent d99c10fc4d19b6bcfcf948288c20d4b11e4ee78b mod_log_sasl_mech: Log SASL mechanism attached to session diff -r d99c10fc4d19 -r 4baaa5a66a5a mod_log_sasl_mech/mod_log_sasl_mech.lua --- 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);