mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_register_limits: Promote log message about inability to apply black/whitelists to a warning
This commit is contained in:
parent
8b04ec15b0
commit
693a06e2f3
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ module:hook("user-registering", function (event)
|
||||||
local ip = event.ip or session and session.ip;
|
local ip = event.ip or session and session.ip;
|
||||||
local log = session and session.log or module._log;
|
local log = session and session.log or module._log;
|
||||||
if not ip then
|
if not ip then
|
||||||
log("debug", "IP not known; can't apply blacklist/whitelist");
|
log("warn", "IP not known; can't apply blacklist/whitelist");
|
||||||
elseif ip_in_set(blacklisted_ips, ip) then
|
elseif ip_in_set(blacklisted_ips, ip) then
|
||||||
log("debug", "Registration disallowed by blacklist");
|
log("debug", "Registration disallowed by blacklist");
|
||||||
event.allowed = false;
|
event.allowed = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue