view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1295:dfe1818962f5

mod_require_otr: New module to (attempt to) require that all messages are encrypted with OTR (credit for the idea goes to Gregory Maxwell on the liberationtech mailing list)
author Matthew Wild <mwild1@gmail.com>
date Sat, 01 Feb 2014 04:42:30 +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);