diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-03-07 11:27:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 11:27:57 -0500 |
commit | 20ed8c926b518809e67e4d1696189413e851d2e4 (patch) | |
tree | 8bdff08e1a815cc71cc4892fffdc9c821c60ff17 /synapse/config/experimental.py | |
parent | Pass the Requester down to the HttpTransactionCache. (#15200) (diff) | |
download | synapse-20ed8c926b518809e67e4d1696189413e851d2e4.tar.xz |
Stabilize support for MSC3873: disambuguated event push keys. (#15190)
This removes the experimental configuration option and always escapes the push rule condition keys. Also escapes any (experimental) push rule condition keys in the base rules which contain dot in a field name.
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r-- | synapse/config/experimental.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 9ff382ccc3..7e05f78f70 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -166,11 +166,6 @@ 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 - ) - # MSC3952: Intentional mentions, this depends on MSC3966. self.msc3952_intentional_mentions = experimental.get( "msc3952_intentional_mentions", False @@ -181,10 +176,5 @@ 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) |