view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1294:bb1fb54360ab

mod_auth_any: Allows any username/password to connect
author Waqas Hussain <waqas20@gmail.com>, Matthew Wild <mwild1@gmail.com>
date Thu, 30 Jan 2014 20:31:18 -0500
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);