mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.prosodyctl.check: Correct modern replacement for 'disallow_s2s'
The code would have suggested adding to modules_enabled instead of modules_disabled
This commit is contained in:
parent
0fa9d6be37
commit
da3d755a15
1 changed files with 1 additions and 1 deletions
|
@ -369,7 +369,7 @@ local function check(arg)
|
|||
local deprecated_replacements = {
|
||||
anonymous_login = instead_use("option", "authentication", "anonymous");
|
||||
daemonize = "instead, use the --daemonize/-D or --foreground/-F command line flags";
|
||||
disallow_s2s = instead_use("module", "s2s");
|
||||
disallow_s2s = instead_use("module", "s2s", "modules_disabled");
|
||||
no_daemonize = "instead, use the --daemonize/-D or --foreground/-F command line flags";
|
||||
require_encryption = "instead, use 'c2s_require_encryption' and 's2s_require_encryption'";
|
||||
vcard_compatibility = instead_use("community", "mod_compat_vcard");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue