From 24635a6380decea72ba8b144a0003f09280dff2f Mon Sep 17 00:00:00 2001 From: bgrozev Date: Thu, 17 Apr 2025 08:06:16 -0500 Subject: [PATCH] Load mod_muc_hide_all manually. (#2077) --- prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua b/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua index 681e497..5c3e6e8 100644 --- a/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua +++ b/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua @@ -301,6 +301,7 @@ Component "{{ $XMPP_MUC_DOMAIN }}" "muc" restrict_room_creation = true storage = "memory" modules_enabled = { + "muc_hide_all"; "muc_meeting_id"; {{ if .Env.XMPP_MUC_MODULES -}} "{{ join "\";\n \"" (splitList "," .Env.XMPP_MUC_MODULES | compact) }}"; @@ -426,6 +427,7 @@ Component "lobby.{{ $XMPP_DOMAIN }}" "muc" muc_max_occupants = "{{ .Env.MAX_PARTICIPANTS }}" {{- end }} modules_enabled = { + "muc_hide_all"; {{- if $ENABLE_RATE_LIMITS }} "muc_rate_limit"; {{- end }} @@ -449,6 +451,7 @@ Component "breakout.{{ $XMPP_DOMAIN }}" "muc" muc_tombstones = false muc_room_allow_persistent = false modules_enabled = { + "muc_hide_all"; "muc_meeting_id"; {{ if not $DISABLE_POLLS -}} "polls";