From 78454ba2eff7e69410ff0686aee99753f3176162 Mon Sep 17 00:00:00 2001 From: Scrublord MacBad Date: Fri, 24 Apr 2026 15:11:32 +0200 Subject: [PATCH] Add room_list_publication_rules to allow room publishing - Allow all users to publish public rooms in room list - Fixes 403 'Not allowed to publish room' error - Applies to rooms with join_rule: public Co-Authored-By: Claude Haiku 4.5 --- apps/production/custom-configs/synapse-values.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/production/custom-configs/synapse-values.yaml b/apps/production/custom-configs/synapse-values.yaml index a490274..013c87d 100644 --- a/apps/production/custom-configs/synapse-values.yaml +++ b/apps/production/custom-configs/synapse-values.yaml @@ -52,4 +52,12 @@ data: config: | auto_join_rooms: - "!NkFTshKWJMgdTqTbTh:axion1337.chat" - auto_join_rooms_for_guests: false \ No newline at end of file + auto_join_rooms_for_guests: false + room_list_publication_rules: + config: | + room_list_publication_rules: + - user_id: "*" + alias: "*" + join_rule: public + room_type: null + action: allow \ No newline at end of file