# HG changeset patch # User Kim Alvefur # Date 1449157584 -3600 # Node ID 2bb6586eacdd6fa6035ca73b43facd1ca5592a93 # Parent 82baf2609cbe4a49c93efce84a09ac00f5822bbf# Parent bd76e73a20c688943150d9f980e9d379e21c1f35 Merge... diff -r 82baf2609cbe -r 2bb6586eacdd prosodyctl --- a/prosodyctl Thu Dec 03 15:43:29 2015 +0000 +++ b/prosodyctl Thu Dec 03 16:46:24 2015 +0100 @@ -913,11 +913,34 @@ print(" For more information see: http://prosody.im/doc/dns"); end end - local all_options = set.new(); + local all_modules = set.new(config["*"].modules_enabled); + local all_options = set.new(it.to_array(it.keys(config["*"]))); for host in enabled_hosts() do all_options:include(set.new(it.to_array(it.keys(config[host])))); + all_modules:include(set.new(config[host].modules_enabled)); end - local ssl = nil, dependencies.softreq"ssl"; + for mod in all_modules do + if mod:match("^mod_") then + print(""); + print(" Modules in modules_enabled should not have the 'mod_' prefix included."); + print(" Change '"..mod.."' to '"..mod:match("^mod_(.*)").."'."); + elseif mod:match("^auth_") then + print(""); + print(" Authentication modules should not be added to modules_enabled,"); + print(" but be specified in the 'authentication' option."); + print(" Remove '"..mod.."' from modules_enabled and instead add"); + print(" authentication = '"..mod:match("^auth_(.*)").."'"); + print(" For more information see https://prosody.im/doc/authentication"); + elseif mod:match("^storage_") then + print(""); + print(" storage modules should not be added to modules_enabled,"); + print(" but be specified in the 'storage' option."); + print(" Remove '"..mod.."' from modules_enabled and instead add"); + print(" storage = '"..mod:match("^storage_(.*)").."'"); + print(" For more information see https://prosody.im/doc/storage"); + end + end + local ssl = dependencies.softreq"ssl"; if not ssl then if not set.intersection(all_options, set.new({"require_encryption", "c2s_require_encryption", "s2s_require_encryption"})):empty() then print("");