1 files changed, 5 insertions, 18 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 489f2601ac..99dcd27c74 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -166,20 +166,9 @@ class ExperimentalConfig(Config):
# MSC3391: Removing account data.
self.msc3391_enabled = experimental.get("msc3391_enabled", False)
- # MSC3873: Disambiguate event_match keys.
- self.msc3873_escape_event_match_key = experimental.get(
- "msc3873_escape_event_match_key", False
- )
-
- # MSC3966: exact_event_property_contains push rule condition.
- self.msc3966_exact_event_property_contains = experimental.get(
- "msc3966_exact_event_property_contains", False
- )
-
# MSC3952: Intentional mentions, this depends on MSC3966.
- self.msc3952_intentional_mentions = (
- experimental.get("msc3952_intentional_mentions", False)
- and self.msc3966_exact_event_property_contains
+ self.msc3952_intentional_mentions = experimental.get(
+ "msc3952_intentional_mentions", False
)
# MSC3959: Do not generate notifications for edits.
@@ -187,10 +176,8 @@ class ExperimentalConfig(Config):
"msc3958_supress_edit_notifs", False
)
- # MSC3966: exact_event_property_contains push rule condition.
- self.msc3966_exact_event_property_contains = experimental.get(
- "msc3966_exact_event_property_contains", False
- )
-
# MSC3967: Do not require UIA when first uploading cross signing keys
self.msc3967_enabled = experimental.get("msc3967_enabled", False)
+
+ # MSC2659: Application service ping endpoint
+ self.msc2659_enabled = experimental.get("msc2659_enabled", False)
|