1 files changed, 15 insertions, 0 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py
index f42f605f23..a17b35a605 100644
--- a/synapse/push/baserules.py
+++ b/synapse/push/baserules.py
@@ -277,6 +277,21 @@ BASE_APPEND_OVERRIDE_RULES: List[Dict[str, Any]] = [
],
"actions": ["dont_notify"],
},
+ # XXX: This is an experimental rule that is only enabled if msc3786_enabled
+ # is enabled, if it is not the rule gets filtered out in _load_rules() in
+ # PushRulesWorkerStore
+ {
+ "rule_id": "global/override/.org.matrix.msc3786.rule.room.server_acl",
+ "conditions": [
+ {
+ "kind": "event_match",
+ "key": "type",
+ "pattern": "m.room.server_acl",
+ "_cache_key": "_room_server_acl",
+ }
+ ],
+ "actions": ["dont_notify"],
+ },
]
|