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 /rust/src/push/base_rules.rs | |
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 'rust/src/push/base_rules.rs')
-rw-r--r-- | rust/src/push/base_rules.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/push/base_rules.rs b/rust/src/push/base_rules.rs index bb59676bde..2a09cf99ae 100644 --- a/rust/src/push/base_rules.rs +++ b/rust/src/push/base_rules.rs @@ -173,7 +173,7 @@ pub const BASE_APPEND_OVERRIDE_RULES: &[PushRule] = &[ default_enabled: true, }, PushRule { - rule_id: Cow::Borrowed("global/override/.org.matrix.msc3786.rule.room.server_acl"), + rule_id: Cow::Borrowed("global/override/.m.rule.room.server_acl"), priority_class: 5, conditions: Cow::Borrowed(&[ Condition::Known(KnownCondition::EventMatch(EventMatchCondition { |