# HG changeset patch # User Matthew Wild # Date 1739469703 0 # Node ID 8c0db1524dd9815d7f0e55d70ff045fe5dd1a659 # Parent 3ff2027e5880826823132a819330223e84f1efb4# Parent d112eac6a3dc26e8701f30bdd11d515d87c779be Merge 13.0->trunk diff -r 3ff2027e5880 -r 8c0db1524dd9 core/modulemanager.lua --- a/core/modulemanager.lua Thu Feb 13 17:05:51 2025 +0000 +++ b/core/modulemanager.lua Thu Feb 13 18:01:43 2025 +0000 @@ -29,7 +29,6 @@ local lua_version = _VERSION:match("5%.%d+$"); local autoload_modules = { - prosody.platform, "presence", "message", "iq", diff -r 3ff2027e5880 -r 8c0db1524dd9 util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Thu Feb 13 17:05:51 2025 +0000 +++ b/util/prosodyctl/check.lua Thu Feb 13 18:01:43 2025 +0000 @@ -632,6 +632,12 @@ print(" Both mod_pep_simple and mod_pep are enabled but they conflict"); print(" with each other. Remove one."); end + if all_modules:contains("posix") then + print(""); + print(" mod_posix is loaded in your configuration file, but it has"); + print(" been deprecated. You can safely remove it."); + end + for host, host_config in pairs(config) do --luacheck: ignore 213/host if type(rawget(host_config, "storage")) == "string" and rawget(host_config, "default_storage") then print("");