From 35877997511a8d6b6a274cc5a6a4f38c74c5338d Mon Sep 17 00:00:00 2001 From: bgrozev Date: Thu, 8 Jan 2026 08:02:34 -0600 Subject: [PATCH] fix: Patch prosody 13.0.3 to disable domain verification. (#2197) We allow "_" in tenant names, which get translated to conferencename@conference.TANANT.meet.jitsi. With this change in 13.0.3 prosody throws errors as domains with "_" are not valid according to the spec. https://hg.prosody.im/trunk/rev/863dd118f8e8 --- prosody/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prosody/Dockerfile b/prosody/Dockerfile index 41f8659..1043303 100644 --- a/prosody/Dockerfile +++ b/prosody/Dockerfile @@ -65,7 +65,8 @@ RUN set -x && \ tar -xf v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz && \ mkdir /prosody-plugins-contrib && \ cp -a prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS/* /prosody-plugins-contrib && \ - rm -rf prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz + rm -rf prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz && \ + (apt-cache policy prosody | grep -q "13\.0\.3" && sed -i '/idna_to_ascii/d' /usr/share/lua/5.4/prosody/util/jid.lua) || true COPY rootfs/ /