comparison 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
comparison
equal deleted inserted replaced
1392:d99c10fc4d19 1393:4baaa5a66a5a
1 1
2 module:hook("authentication-success", function (event) 2 module:hook("authentication-success", function (event)
3 local sasl_handler = event.session.sasl_handler; 3 local session = event.session;
4 module:log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth"); 4 local sasl_handler = session.sasl_handler;
5 session.log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
5 end); 6 end);