changeset 1292:2d061333d0c2

mod_log_sasl_mech: Logs authentication mechanism used
author Kim Alvefur <zash@zash.se>
date Tue, 28 Jan 2014 12:47:06 +0100
parents 1ac28a953e5f
children ddbc1eb8d431
files mod_log_sasl_mech/mod_log_sasl_mech.lua
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_log_sasl_mech/mod_log_sasl_mech.lua	Tue Jan 28 12:47:06 2014 +0100
@@ -0,0 +1,5 @@
+
+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);