mod_register_limits: Log a debug message when disallowing registration by ewhite- or blacklist

This commit is contained in:
Kim Alvefur 2018-03-10 02:24:18 +01:00
parent 9d92cdc944
commit 549d89cb0d

View file

@ -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