aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_register_limits.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-10 02:28:29 +0100
committerKim Alvefur <zash@zash.se>2018-03-10 02:28:29 +0100
commit7bb23790b3b9162909b9bb0af779b0327f5a3fda (patch)
tree56cc89328f7aca87bd6a789ea944347ad7e57f93 /plugins/mod_register_limits.lua
parent9eb4ffc53d9085c40e4f05386a614816f2c872fb (diff)
downloadprosody-7bb23790b3b9162909b9bb0af779b0327f5a3fda.tar.gz
prosody-7bb23790b3b9162909b9bb0af779b0327f5a3fda.zip
mod_register_limits: Return reason for disallowing
Diffstat (limited to 'plugins/mod_register_limits.lua')
-rw-r--r--plugins/mod_register_limits.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_register_limits.lua b/plugins/mod_register_limits.lua
index 94e2b381..685a84bd 100644
--- a/plugins/mod_register_limits.lua
+++ b/plugins/mod_register_limits.lua
@@ -63,13 +63,16 @@ module:hook("user-registering", function (event)
elseif ip_in_set(blacklisted_ips, event.ip) then
log("debug", "Registration disallowed by blacklist");
event.allowed = false;
+ event.reason = "Your IP address is blacklisted";
elseif (whitelist_only and not ip_in_set(whitelisted_ips, ip)) then
log("debug", "Registration disallowed by whitelist");
event.allowed = false;
+ event.reason = "Your IP address is not whitelisted";
elseif throttle_max and not ip_in_set(whitelisted_ips, ip) then
if not check_throttle(event.ip) then
log("debug", "Registrations over limit for ip %s", ip or "?");
event.allowed = false;
+ event.reason = "Too many registrations from this IP address recently";
end
end
end);