From 13968a8133174024dc97c5cf73e6b1e7883ce0a0 Mon Sep 17 00:00:00 2001 From: Milton Moura Date: Mon, 6 Oct 2025 15:12:07 +0000 Subject: [PATCH] fix(element): Increase message and media rate limits --- helmfile/apps/element/values-synapse.yaml.gotmpl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/helmfile/apps/element/values-synapse.yaml.gotmpl b/helmfile/apps/element/values-synapse.yaml.gotmpl index 995b3ee0..2cc49521 100644 --- a/helmfile/apps/element/values-synapse.yaml.gotmpl +++ b/helmfile/apps/element/values-synapse.yaml.gotmpl @@ -25,6 +25,14 @@ configuration: address: per_second: 2 burst_count: 12 + # Set higher limits for messages and media due to non-chat Matrix apps and widgets (such as NeoBoard) + # https://github.com/nordeck/matrix-neoboard/blob/main/docs/configuration.md#rate-limiting-settings + rc_message: + per_second: 5 + burst_count: 25 + rc_media_create: + per_second: 20 + burst_count: 100 database: host: {{ .Values.databases.synapse.host | quote }}