Add support for configuring Synapse's MSC4140 (Delayed Events) experimental feature

This is required by Element Call.

Ref:

- 93ae2aed98/docs/self-hosting.md (a-matrix-homeserver)
- https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/3562
This commit is contained in:
Slavi Pantaleev
2025-03-12 09:09:21 +02:00
parent 4fb0b75942
commit f5a0be0a7b
2 changed files with 21 additions and 0 deletions

View File

@ -2987,5 +2987,12 @@ experimental_features:
{% if matrix_synapse_experimental_features_msc4108_enabled %}
msc4108_enabled: true
{% endif %}
{% if matrix_synapse_experimental_features_msc4140_enabled %}
msc4140_enabled: true
{% endif %}
{% if matrix_synapse_experimental_features_msc4140_enabled %}
max_event_delay_duration: {{ matrix_synapse_max_event_delay_duration | to_json }}
{% endif %}
# vim:ft=yaml