# HG changeset patch # User Kim Alvefur # Date 1677101262 -3600 # Node ID 4255db0f8e58d1edc282255fe970243c9a4a50f8 # Parent 423f240d117377e5ba9c8990816b2a26bfc6e0b4 util.prosodyctl.check: Suggest 'http_cors_override' instead of older CORS settings The cross_domain_* settings were added here prior to http_cors_override being added back in 17d87fb2312a, so for a time there was no replacement, but now there is. diff -r 423f240d1173 -r 4255db0f8e58 util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Tue Feb 21 10:06:54 2023 +0000 +++ b/util/prosodyctl/check.lua Wed Feb 22 22:27:42 2023 +0100 @@ -341,8 +341,6 @@ local obsolete = set.new({ --> remove "archive_cleanup_interval", - "cross_domain_bosh", - "cross_domain_websocket", "dns_timeout", "muc_log_cleanup_interval", "s2s_dns_resolvers", @@ -375,6 +373,8 @@ registration_whitelist = instead_use("option", "registration_allowlist"); registration_blacklist = instead_use("option", "registration_blocklist"); blacklist_on_registration_throttle_overload = instead_use("blocklist_on_registration_throttle_overload"); + cross_domain_bosh = "instead, use 'http_cors_override', see https://prosody.im/doc/http#cross-domain-cors-support"; + cross_domain_websocket = "instead, use 'http_cors_override', see https://prosody.im/doc/http#cross-domain-cors-support"; }; -- FIXME all the singular _port and _interface options are supposed to be deprecated too local deprecated_ports = { bosh = "http", legacy_ssl = "c2s_direct_tls" };