mod_log_sasl_mech/mod_log_sasl_mech.lua
author Kim Alvefur <zash@zash.se>
Tue, 28 Jan 2014 12:47:06 +0100
changeset 1292 2d061333d0c2
child 1393 4baaa5a66a5a
permissions -rw-r--r--
mod_log_sasl_mech: Logs authentication mechanism used


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");
end);