mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-03-16 17:45:11 +01:00
Add matrix_synapse_rc_delayed_event_mgmt
variable
Ref: -c4747dd177/docs/self-hosting.md (a-matrix-homeserver)
-e39fe3bc7f
This commit is contained in:
parent
6077c7a1d6
commit
60e2e035a2
@ -468,6 +468,13 @@ matrix_synapse_rc_federation:
|
||||
|
||||
matrix_synapse_federation_rr_transactions_per_room_per_second: 50
|
||||
|
||||
# Controls the rate limit for delayed event management.
|
||||
#
|
||||
# This is only applied if `matrix_synapse_experimental_features_msc4140_enabled` is set to `true`.
|
||||
matrix_synapse_rc_delayed_event_mgmt:
|
||||
per_second: 1
|
||||
burst_count: 20
|
||||
|
||||
# Controls the templates directory setting.
|
||||
#
|
||||
# See:
|
||||
@ -1265,7 +1272,9 @@ matrix_synapse_experimental_features_msc3266_enabled: true
|
||||
# Delayed events are required for proper call (Element Call) participation signalling.
|
||||
# If disabled it is very likely that you end up with stuck calls in Matrix rooms.
|
||||
#
|
||||
# Related to `matrix_synapse_max_event_delay_duration`
|
||||
# Related to:
|
||||
# - `matrix_synapse_max_event_delay_duration`
|
||||
# - `matrix_synapse_rc_delayed_event_mgmt`
|
||||
#
|
||||
# See https://github.com/matrix-org/matrix-spec-proposals/pull/4140
|
||||
matrix_synapse_experimental_features_msc4140_enabled: false
|
||||
|
@ -2999,6 +2999,7 @@ experimental_features:
|
||||
|
||||
{% if matrix_synapse_experimental_features_msc4140_enabled %}
|
||||
max_event_delay_duration: {{ matrix_synapse_max_event_delay_duration | to_json }}
|
||||
rc_delayed_event_mgmt: {{ matrix_synapse_rc_delayed_event_mgmt | to_json }}
|
||||
{% endif %}
|
||||
|
||||
# vim:ft=yaml
|
||||
|
Loading…
x
Reference in New Issue
Block a user