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 "untracked" 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 "untracked" 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">"m.room.name": 50
+"m.room.power_levels": 100
+"m.room.history_visibility": 100
+"m.room.canonical_alias": 50
+"m.room.avatar": 50
+"m.room.tombstone": 100
+"m.room.server_acl": 100
+"m.room.encryption": 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:
+ "com.example.foo": 0
+ "m.room.name": 50
+ "m.room.power_levels": 100
+ "m.room.history_visibility": 100
+ "m.room.canonical_alias": 50
+ "m.room.avatar": 50
+ "m.room.tombstone": 100
+ "m.room.server_acl": 100
+ "m.room.encryption": 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
|