mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_register_limits: Log a debug message when disallowing registration by ewhite- or blacklist
This commit is contained in:
parent
9d92cdc944
commit
549d89cb0d
1 changed files with 1 additions and 0 deletions
|
@ -61,6 +61,7 @@ module:hook("user-registering", function (event)
|
|||
if not ip then
|
||||
log("debug", "User's IP not known; can't apply blacklist/whitelist");
|
||||
elseif ip_in_set(blacklisted_ips, event.ip) or (whitelist_only and not ip_in_set(whitelisted_ips, ip)) then
|
||||
log("debug", "Registration disallowed by white- or blacklist");
|
||||
event.allowed = false;
|
||||
elseif throttle_max and not ip_in_set(whitelisted_ips, ip) then
|
||||
if not check_throttle(event.ip) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue