From 7c2b8b559714ffc3940fcbc2ccf40d540d3e5531 Mon Sep 17 00:00:00 2001 From: damencho Date: Fri, 13 Jun 2025 15:40:21 -0500 Subject: [PATCH] fix(prosody): Drops some unnecessary configs. --- .../rootfs/defaults/conf.d/jitsi-meet.cfg.lua | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua b/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua index 8be49a8..cdabb10 100644 --- a/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua +++ b/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua @@ -170,21 +170,13 @@ VirtualHost "{{ $XMPP_DOMAIN }}" "websocket"; "smacks"; -- XEP-0198: Stream Management {{ end }} - "speakerstats"; "conference_duration"; - "room_metadata"; - {{ if $ENABLE_END_CONFERENCE }} - "end_conference"; - {{ end }} {{ if $ENABLE_LOBBY }} "muc_lobby_rooms"; {{ end }} {{ if $ENABLE_BREAKOUT_ROOMS }} "muc_breakout_rooms"; {{ end }} - {{ if $ENABLE_AV_MODERATION }} - "av_moderation"; - {{ end }} {{ if .Env.XMPP_MODULES }} "{{ join "\";\n \"" (splitList "," .Env.XMPP_MODULES | compact) }}"; {{ end }} @@ -204,7 +196,6 @@ VirtualHost "{{ $XMPP_DOMAIN }}" } main_muc = "{{ $XMPP_MUC_DOMAIN }}" - room_metadata_component = "metadata.{{ $XMPP_DOMAIN }}" {{ if $ENABLE_LOBBY }} lobby_muc = "lobby.{{ $XMPP_DOMAIN }}" {{ if or $ENABLE_RECORDING $ENABLE_TRANSCRIPTIONS }} @@ -220,17 +211,6 @@ VirtualHost "{{ $XMPP_DOMAIN }}" breakout_rooms_muc = "breakout.{{ $XMPP_DOMAIN }}" {{ end }} - speakerstats_component = "speakerstats.{{ $XMPP_DOMAIN }}" - conference_duration_component = "conferenceduration.{{ $XMPP_DOMAIN }}" - - {{ if $ENABLE_END_CONFERENCE }} - end_conference_component = "endconference.{{ $XMPP_DOMAIN }}" - {{ end }} - - {{ if $ENABLE_AV_MODERATION }} - av_moderation_component = "avmoderation.{{ $XMPP_DOMAIN }}" - {{ end }} - c2s_require_encryption = {{ $C2S_REQUIRE_ENCRYPTION }} {{ if $ENABLE_VISITORS -}} @@ -404,9 +384,6 @@ Component "speakerstats.{{ $XMPP_DOMAIN }}" "speakerstats_component" } {{- end }} -Component "conferenceduration.{{ $XMPP_DOMAIN }}" "conference_duration_component" - muc_component = "{{ $XMPP_MUC_DOMAIN }}" - {{ if $ENABLE_END_CONFERENCE }} Component "endconference.{{ $XMPP_DOMAIN }}" "end_conference" muc_component = "{{ $XMPP_MUC_DOMAIN }}"