summary refs log tree commit diff
path: root/latest/usage/configuration/config_documentation.html
diff options
context:
space:
mode:
authorreivilibre <reivilibre@users.noreply.github.com>2024-07-30 17:09:14 +0000
committerreivilibre <reivilibre@users.noreply.github.com>2024-07-30 17:09:14 +0000
commit508a22b5df5a4bd6a06f5dfe4527487ac4f094a3 (patch)
tree7b546116949cb0ccdb65c82c8f4a44803cdcde17 /latest/usage/configuration/config_documentation.html
parentdeploy: 2f6b86e79adf9ed969b492a7c91a19d08f345f2f (diff)
downloadsynapse-508a22b5df5a4bd6a06f5dfe4527487ac4f094a3.tar.xz
deploy: ed583d9c815520f94a7267e7ef0dbb7977e57189
Diffstat (limited to 'latest/usage/configuration/config_documentation.html')
-rw-r--r--latest/usage/configuration/config_documentation.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/latest/usage/configuration/config_documentation.html b/latest/usage/configuration/config_documentation.html

index 1558c15ce3..4bbfbf9aef 100644 --- a/latest/usage/configuration/config_documentation.html +++ b/latest/usage/configuration/config_documentation.html
@@ -348,11 +348,15 @@ This option replaces the previous top-level 'use_presence' option.</p> <p>Example configuration:</p> <pre><code class="language-yaml">presence: enabled: false + include_offline_users_on_sync: false </code></pre> <p><code>enabled</code> can also be set to a special value of &quot;untracked&quot; which ignores updates received via clients and federation, while still accepting updates from the <a href="../../modules/index.html">module API</a>.</p> <p><em>The &quot;untracked&quot; option was added in Synapse 1.96.0.</em></p> +<p>When clients perform an initial or <code>full_state</code> sync, presence results for offline users are +not included by default. Setting <code>include_offline_users_on_sync</code> to <code>true</code> will always include +offline users in the results. Defaults to false.</p> <hr /> <h3 id="require_auth_for_profile_requests"><a class="header" href="#require_auth_for_profile_requests"><code>require_auth_for_profile_requests</code></a></h3> <p>Whether to require authentication to retrieve profile data (avatars, display names) of other @@ -1761,6 +1765,15 @@ into fewer transactions. Defaults to 50.</p> <h2 id="media-store"><a class="header" href="#media-store">Media Store</a></h2> <p>Config options related to Synapse's media store.</p> <hr /> +<h3 id="enable_authenticated_media"><a class="header" href="#enable_authenticated_media"><code>enable_authenticated_media</code></a></h3> +<p>When set to true, all subsequent media uploads will be marked as authenticated, and will not be available over legacy +unauthenticated media endpoints (<code>/_matrix/media/(r0|v3|v1)/download</code> and <code>/_matrix/media/(r0|v3|v1)/thumbnail</code>) - requests for authenticated media over these endpoints will result in a 404. All media, including authenticated media, will be available over the authenticated media endpoints <code>_matrix/client/v1/media/download</code> and <code>_matrix/client/v1/media/thumbnail</code>. Media uploaded prior to setting this option to true will still be available over the legacy endpoints. Note if the setting is switched to false +after enabling, media marked as authenticated will be available over legacy endpoints. Defaults to false, but +this will change to true in a future Synapse release.</p> +<p>Example configuration:</p> +<pre><code class="language-yaml">enable_authenticated_media: true +</code></pre> +<hr /> <h3 id="enable_media_repo"><a class="header" href="#enable_media_repo"><code>enable_media_repo</code></a></h3> <p>Enable the media store service in the Synapse master. Defaults to true. Set to false if you are using a separate media store worker.</p> @@ -3714,6 +3727,33 @@ except <code>com.example.foo</code>.</p> trusted_private_chat: null public_chat: null </code></pre> +<p>The default power levels for each preset are:</p> +<pre><code class="language-yaml">&quot;m.room.name&quot;: 50 +&quot;m.room.power_levels&quot;: 100 +&quot;m.room.history_visibility&quot;: 100 +&quot;m.room.canonical_alias&quot;: 50 +&quot;m.room.avatar&quot;: 50 +&quot;m.room.tombstone&quot;: 100 +&quot;m.room.server_acl&quot;: 100 +&quot;m.room.encryption&quot;: 100 +</code></pre> +<p>So a complete example where the default power-levels for a preset are maintained +but the power level for a new key is set is:</p> +<pre><code class="language-yaml">default_power_level_content_override: + private_chat: + events: + &quot;com.example.foo&quot;: 0 + &quot;m.room.name&quot;: 50 + &quot;m.room.power_levels&quot;: 100 + &quot;m.room.history_visibility&quot;: 100 + &quot;m.room.canonical_alias&quot;: 50 + &quot;m.room.avatar&quot;: 50 + &quot;m.room.tombstone&quot;: 100 + &quot;m.room.server_acl&quot;: 100 + &quot;m.room.encryption&quot;: 100 + trusted_private_chat: null + public_chat: null +</code></pre> <hr /> <h3 id="forget_rooms_on_leave"><a class="header" href="#forget_rooms_on_leave"><code>forget_rooms_on_leave</code></a></h3> <p>Set to true to automatically forget rooms for users when they leave them, either