summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py

index 678c78d565..d19165e5b4 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py
@@ -50,6 +50,18 @@ class ExperimentalConfig(Config): # MSC3030 (Jump to date API endpoint) self.msc3030_enabled: bool = experimental.get("msc3030_enabled", False) + # MSC2409 (this setting only relates to optionally sending to-device messages). + # Presence, typing and read receipt EDUs are already sent to application services that + # have opted in to receive them. This setting, if enabled, adds to-device messages + # to that list. + self.msc2409_to_device_messages_enabled: bool = experimental.get( + "msc2409_to_device_messages_enabled", False + ) + + # MSC3202 (device list updates and OTK counts / fallback keys to appservices). + # Only device lists are supported currently. + self.msc3202_enabled: bool = experimental.get("msc3202_enabled", False) + # The portion of MSC3202 which is related to device masquerading. self.msc3202_device_masquerading_enabled: bool = experimental.get( "msc3202_device_masquerading", False