mirror of https://github.com/sipwise/prosody.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
759 B
16 lines
759 B
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)
|
|
module:log("info", "Failed authentication attempt (%s) for user %s from IP: %s", event.condition or "unknown-condition", event.session.username or "?", event.session.ip or "?");
|
|
end);
|
|
end
|
|
|
|
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 "?");
|
|
end);
|
|
end
|