view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1299:a7d6c6d2c7b5

mod_onions: Accepted patch that should fix problems when using libevent.
author Thijs Alkemade <me@thijsalkema.de>
date Tue, 04 Feb 2014 12:48:33 +0100
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);