Mercurial > prosody-modules
view mod_log_auth/mod_log_auth.lua @ 2832:15a9d508c5f7
mod_mam_muc: Pass along the size of the matching set, if returned from storage driver
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 18 Nov 2017 00:47:00 +0100 |
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