mod_log_auth: log into session
authorGeorg Lukas <georg@op-co.de>
Wed, 19 Apr 2017 13:45:18 +0200
changeset 2703 dae655657a92
parent 2702 88205b77e385
child 2704 7a5dae85f26f
mod_log_auth: log into session
mod_log_auth/mod_log_auth.lua
--- a/mod_log_auth/mod_log_auth.lua	Wed Apr 19 06:45:49 2017 +0200
+++ b/mod_log_auth/mod_log_auth.lua	Wed Apr 19 13:45:18 2017 +0200
@@ -6,7 +6,7 @@
 	module:hook("authentication-failure", function (event)
 		local session = event.session;
 		local username = session.username or session.sasl_handler and session.sasl_handler.username or "?";
-		module:log("info", "Failed authentication attempt (%s) for user %s from IP: %s",
+		session.log("info", "Failed authentication attempt (%s) for user %s from IP: %s",
 			event.condition or "unknown-condition", username, session.ip or "?");
 	end);
 end
@@ -14,6 +14,6 @@
 if mode == "success" or mode == "all" then
 	module:hook("authentication-success", function (event)
 		local session = event.session;
-		module:log("info", "Successful authentication as %s from IP: %s", session.username, session.ip or "?");
+		session.log("info", "Successful authentication as %s from IP: %s", session.username, session.ip or "?");
 	end);
 end