From 04650ce009e39d5ae80b74f403884fdf09ae9236 Mon Sep 17 00:00:00 2001 From: Ben Banfield-Zanin Date: Mon, 8 Dec 2025 09:52:31 +0000 Subject: [PATCH] Toggle SFU room creation restrictions to on --- charts/matrix-stack/source/matrix-rtc.yaml.j2 | 3 +-- charts/matrix-stack/values.yaml | 3 +-- newsfragments/926.removed.md | 3 +++ 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 newsfragments/926.removed.md diff --git a/charts/matrix-stack/source/matrix-rtc.yaml.j2 b/charts/matrix-stack/source/matrix-rtc.yaml.j2 index 06549c6b6..7d5804bca 100644 --- a/charts/matrix-stack/source/matrix-rtc.yaml.j2 +++ b/charts/matrix-stack/source/matrix-rtc.yaml.j2 @@ -10,8 +10,7 @@ enabled: true # Allows restricting room creation to local users only # Remote federated users can still join the room -# Defaults to false for now until clients are upgraded to support the new mechanism -restrictRoomCreationToLocalUsers: false +restrictRoomCreationToLocalUsers: true # LiveKit Authentication Configuration # This section allows you to configure authentication for the LiveKit SFU. diff --git a/charts/matrix-stack/values.yaml b/charts/matrix-stack/values.yaml index 9fd21b2cf..903b57596 100644 --- a/charts/matrix-stack/values.yaml +++ b/charts/matrix-stack/values.yaml @@ -416,8 +416,7 @@ matrixRTC: # Allows restricting room creation to local users only # Remote federated users can still join the room - # Defaults to false for now until clients are upgraded to support the new mechanism - restrictRoomCreationToLocalUsers: false + restrictRoomCreationToLocalUsers: true # LiveKit Authentication Configuration # This section allows you to configure authentication for the LiveKit SFU. diff --git a/newsfragments/926.removed.md b/newsfragments/926.removed.md new file mode 100644 index 000000000..3a249eee5 --- /dev/null +++ b/newsfragments/926.removed.md @@ -0,0 +1,3 @@ +The MatrixRTC SFU now restricts creation of calls to users on the local homeserver. + +This can be changed back to allowing anyone to create calls on the SFU by by setting `matrixRTC.restrictRoomCreationToLocalUsers: false`.