diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-09-26 11:52:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 11:52:19 -0400 |
commit | 17800a0e9779a1cfd7c9dff79ae331adf8f44f83 (patch) | |
tree | 59ccbb751adf3ee4404bc1cd3f273b9136cb598d /synapse/config/experimental.py | |
parent | Skip export-data on non-code (e.g. docs) PRs (#16387) (diff) | |
download | synapse-17800a0e9779a1cfd7c9dff79ae331adf8f44f83.tar.xz |
Implement MSC4028: push all encrypted events. (#16361)
This unstable push rule is implemented behind an experimental configuration flag.
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r-- | synapse/config/experimental.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index cabe0d4397..9f830e7094 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -415,3 +415,7 @@ class ExperimentalConfig(Config): LimitExceededError.include_retry_after_header = experimental.get( "msc4041_enabled", False ) + + self.msc4028_push_encrypted_events = experimental.get( + "msc4028_push_encrypted_events", False + ) |