From b733b4f07bad0c829de5f202123d49c43df1519a Mon Sep 17 00:00:00 2001 From: DMRobertson Date: Tue, 13 Dec 2022 00:55:40 +0000 Subject: deploy: e2a1adbf5d11288f2134ced1f84c6ffdd91a9357 --- .../usage/configuration/config_documentation.html | 61 +++++++++++++++------- 1 file changed, 42 insertions(+), 19 deletions(-) (limited to 'develop/usage') diff --git a/develop/usage/configuration/config_documentation.html b/develop/usage/configuration/config_documentation.html index 5f590f6637..ab15c6704b 100644 --- a/develop/usage/configuration/config_documentation.html +++ b/develop/usage/configuration/config_documentation.html @@ -2160,33 +2160,56 @@ Defaults to https://matrix.org/report-usage-stats/push

Config settings related to the client/server API


room_prejoin_state

-

Controls for the state that is shared with users who receive an invite -to a room. By default, the following state event types are shared with users who -receive invites to the room:

+

This setting controls the state that is shared with users upon receiving an +invite to a room, or in reply to a knock on a room. By default, the following +state events are shared with users:

To change the default behavior, use the following sub-options:

Example configuration:

room_prejoin_state:
-   disable_default_event_types: true
+   disable_default_event_types: false
    additional_event_types:
-     - org.example.custom.event.type
-     - m.room.join_rules
-
+ # Share all events of type `org.example.custom.event.typeA` + - org.example.custom.event.typeA + # Share only events of type `org.example.custom.event.typeB` whose + # state_key is "foo" + - ["org.example.custom.event.typeB", "foo"] + # Share only events of type `org.example.custom.event.typeC` whose + # state_key is "bar" or "baz" + - ["org.example.custom.event.typeC", "bar"] + - ["org.example.custom.event.typeC", "baz"] + +

Changed in Synapse 1.74: admins can filter the events in prejoin state based +on their state key.


track_puppeted_user_ips

We record the IP address of clients used to access the API for various -- cgit 1.5.1