view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1375:90bde50b3915

mod_auth_ldap: Limit results in user lookup query to 1
author Kim Alvefur <zash@zash.se>
date Wed, 02 Apr 2014 13:30:53 +0200
parents 2d061333d0c2
children 4baaa5a66a5a
line wrap: on
line source


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