File

mod_log_sasl_mech/mod_log_sasl_mech.lua @ 2389:a753b21968c5

mod_firewall: README: Clarify that it's possible to jump to chains defined outside of the current file
author Matthew Wild <mwild1@gmail.com>
date Sat, 19 Nov 2016 16:01:51 +0000
parent 1393:4baaa5a66a5a
child 5795:5ff8022466ab
line wrap: on
line source


module:hook("authentication-success", function (event)
	local session = event.session;
	local sasl_handler = session.sasl_handler;
	session.log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth");
end);