diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-04 07:08:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 07:08:27 -0400 |
commit | e70c6b720ed537c0b7fc0cd4aa20eac195941d73 (patch) | |
tree | 72150316ef07b8daec001a6b2435f4f1a72a28ef /synapse/config | |
parent | Send the appservice access token as a header. (#13996) (diff) | |
download | synapse-e70c6b720ed537c0b7fc0cd4aa20eac195941d73.tar.xz |
Disable pushing for server ACL events (MSC3786). (#13997)
Switches to the stable identifier for MSC3786 and enables it by default. This disables pushes of m.room.server_acl events.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 31834fb27d..83695f24d9 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -95,9 +95,6 @@ class ExperimentalConfig(Config): # MSC2815 (allow room moderators to view redacted event content) self.msc2815_enabled: bool = experimental.get("msc2815_enabled", False) - # MSC3786 (Add a default push rule to ignore m.room.server_acl events) - self.msc3786_enabled: bool = experimental.get("msc3786_enabled", False) - # MSC3771: Thread read receipts self.msc3771_enabled: bool = experimental.get("msc3771_enabled", False) # MSC3772: A push rule for mutual relations. |