From 4c3e5c248e00d3b84f591ae125163c62ee540307 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Wed, 2 Nov 2016 13:30:45 +0100 Subject: mod_register: Use throttle_max as indicator of limits being enabled, in case min_seconds_between_registrations is not used --- plugins/mod_register.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/mod_register.lua') diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 8929529e..12d3c232 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -230,7 +230,7 @@ module:hook("stanza/iq/jabber:iq:register:query", function(event) elseif blacklisted_ips[session.ip] or (whitelist_only and not whitelisted_ips[session.ip]) then session.send(st.error_reply(stanza, "cancel", "not-acceptable", "You are not allowed to register an account.")); return true; - elseif min_seconds_between_registrations and not whitelisted_ips[session.ip] then + elseif throttle_max and not whitelisted_ips[session.ip] then if not check_throttle(session.ip) then log("debug", "Registrations over limit for ip %s", session.ip or "?"); session.send(st.error_reply(stanza, "wait", "not-acceptable")); -- cgit v1.2.3