comparison mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1292:2d061333d0c2

mod_log_sasl_mech: Logs authentication mechanism used
author Kim Alvefur <zash@zash.se>
date Tue, 28 Jan 2014 12:47:06 +0100
parents
children 4baaa5a66a5a
comparison
equal deleted inserted replaced
1291:1ac28a953e5f 1292:2d061333d0c2
1
2 module:hook("authentication-success", function (event)
3 local sasl_handler = event.session.sasl_handler;
4 module:log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
5 end);