diff options
author | Kim Alvefur <zash@zash.se> | 2021-09-19 15:52:07 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-09-19 15:52:07 +0200 |
commit | 20a7b158ede4a680006ad0b8d0ff535b269fce49 (patch) | |
tree | 65c9379819ca44187204d91314495013ce09241d /util | |
parent | 4703ad42a88393fa71b12fc8929eabd28da60d31 (diff) | |
download | prosody-20a7b158ede4a680006ad0b8d0ff535b269fce49.tar.gz prosody-20a7b158ede4a680006ad0b8d0ff535b269fce49.zip |
mod_register_limits: Reword some options
Remember to remove the compatibility things in some future version
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl/check.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index 4f8379c1..cac96cd4 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -103,6 +103,10 @@ local function check(arg) require_encryption = "use 'c2s_require_encryption' and 's2s_require_encryption'", vcard_compatibility = "use 'mod_compat_vcard' from prosody-modules", use_libevent = "use 'network_backend = \"event\"'", + whitelist_registration_only = "use 'allowlist_registration_only'", + registration_whitelist = "use 'registration_allowlist'", + registration_blacklist = "use 'registration_blocklist'", + blacklist_on_registration_throttle_overload = "use 'blocklist_on_registration_throttle_overload'", }; -- FIXME all the singular _port and _interface options are supposed to be deprecated too local deprecated_ports = { bosh = "http", legacy_ssl = "c2s_direct_tls" }; |