aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_register.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-12-09 19:35:08 +0100
committerKim Alvefur <zash@zash.se>2017-12-09 19:35:08 +0100
commit818d4e73233d91011d1e35bc588206d85512517a (patch)
treec78e235c68681b7eeda2e003f7b3df33aab1cb0b /plugins/mod_register.lua
parentd00ffdb2495a6ae9f61c9deacb6ad1bba3d9c7f5 (diff)
downloadprosody-818d4e73233d91011d1e35bc588206d85512517a.tar.gz
prosody-818d4e73233d91011d1e35bc588206d85512517a.zip
mod_register_ibr: Split out throttling and IP limitations into mod_register_limits (#723)
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r--plugins/mod_register.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua
index 763e2fd9..49ff8a38 100644
--- a/plugins/mod_register.lua
+++ b/plugins/mod_register.lua
@@ -11,6 +11,7 @@ local allow_registration = module:get_option_boolean("allow_registration", false
if allow_registration then
module:depends("register_ibr");
+ module:depends("register_limits");
end
module:depends("user_account_management");