view mod_log_auth/mod_log_auth.lua @ 3005:902ecd6400bd

mod_mam_muc/README: Clarify that only v0.5 of XEP-0313 is supported when used with Prosody 0.10.x
author Kim Alvefur <zash@zash.se>
date Tue, 17 Apr 2018 14:00:40 +0200
parents dae655657a92
children 6d1ec8099315
line wrap: on
line source

local mode = module:get_option_string("log_auth_ips", "failure");
assert(({ all = true, failure = true, success = true })[mode],
	"Unknown log mode: "..tostring(mode).." - valid modes are 'all', 'failure', 'success'");

if mode == "failure" or mode == "all" then
	module:hook("authentication-failure", function (event)
		local session = event.session;
		local username = session.username or session.sasl_handler and session.sasl_handler.username or "?";
		session.log("info", "Failed authentication attempt (%s) for user %s from IP: %s",
			event.condition or "unknown-condition", username, session.ip or "?");
	end);
end

if mode == "success" or mode == "all" then
	module:hook("authentication-success", function (event)
		local session = event.session;
		session.log("info", "Successful authentication as %s from IP: %s", session.username, session.ip or "?");
	end);
end