deploy: 332cce8dcf
This commit is contained in:
parent
c7afcd8183
commit
29004dff5e
|
@ -1631,6 +1631,13 @@ dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h1 id="upgrading-to-v1590"><a class="header" href="#upgrading-to-v1590">Upgrading to v1.59.0</a></h1>
|
||||||
|
<h2 id="device-name-lookup-over-federation-has-been-disabled-by-default"><a class="header" href="#device-name-lookup-over-federation-has-been-disabled-by-default">Device name lookup over federation has been disabled by default</a></h2>
|
||||||
|
<p>The names of user devices are no longer visible to users on other homeservers by default.
|
||||||
|
Device IDs are unaffected, as these are necessary to facilitate end-to-end encryption.</p>
|
||||||
|
<p>To re-enable this functionality, set the
|
||||||
|
<a href="https://matrix-org.github.io/synapse/v1.59/usage/configuration/config_documentation.html#federation"><code>allow_device_name_lookup_over_federation</code></a>
|
||||||
|
homeserver config option to <code>true</code>.</p>
|
||||||
<h1 id="upgrading-to-v1580"><a class="header" href="#upgrading-to-v1580">Upgrading to v1.58.0</a></h1>
|
<h1 id="upgrading-to-v1580"><a class="header" href="#upgrading-to-v1580">Upgrading to v1.58.0</a></h1>
|
||||||
<h2 id="groupscommunities-feature-has-been-disabled-by-default"><a class="header" href="#groupscommunities-feature-has-been-disabled-by-default">Groups/communities feature has been disabled by default</a></h2>
|
<h2 id="groupscommunities-feature-has-been-disabled-by-default"><a class="header" href="#groupscommunities-feature-has-been-disabled-by-default">Groups/communities feature has been disabled by default</a></h2>
|
||||||
<p>The non-standard groups/communities feature in Synapse has been disabled by default
|
<p>The non-standard groups/communities feature in Synapse has been disabled by default
|
||||||
|
@ -3816,11 +3823,11 @@ on this homeserver.</p>
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<p>Config option: <code>allow_device_name_lookup_over_federation</code></p>
|
<p>Config option: <code>allow_device_name_lookup_over_federation</code></p>
|
||||||
<p>Set this option to false to disable device display name lookup over federation. By default, the
|
<p>Set this option to true to allow device display name lookup over federation. By default, the
|
||||||
Federation API allows other homeservers to obtain device display names of any user
|
Federation API prevents other homeservers from obtaining the display names of any user devices
|
||||||
on this homeserver.</p>
|
on this homeserver.</p>
|
||||||
<p>Example configuration:</p>
|
<p>Example configuration:</p>
|
||||||
<pre><code class="language-yaml">allow_device_name_lookup_over_federation: false
|
<pre><code class="language-yaml">allow_device_name_lookup_over_federation: true
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h2 id="caching"><a class="header" href="#caching">Caching</a></h2>
|
<h2 id="caching"><a class="header" href="#caching">Caching</a></h2>
|
||||||
|
@ -6647,11 +6654,11 @@ retention:
|
||||||
#
|
#
|
||||||
#allow_profile_lookup_over_federation: false
|
#allow_profile_lookup_over_federation: false
|
||||||
|
|
||||||
# Uncomment to disable device display name lookup over federation. By default, the
|
# Uncomment to allow device display name lookup over federation. By default, the
|
||||||
# Federation API allows other homeservers to obtain device display names of any user
|
# Federation API prevents other homeservers from obtaining the display names of
|
||||||
# on this homeserver. Defaults to 'true'.
|
# user devices on this homeserver. Defaults to 'false'.
|
||||||
#
|
#
|
||||||
#allow_device_name_lookup_over_federation: false
|
#allow_device_name_lookup_over_federation: true
|
||||||
|
|
||||||
|
|
||||||
## Caching ##
|
## Caching ##
|
||||||
|
|
|
@ -709,11 +709,11 @@ retention:
|
||||||
#
|
#
|
||||||
#allow_profile_lookup_over_federation: false
|
#allow_profile_lookup_over_federation: false
|
||||||
|
|
||||||
# Uncomment to disable device display name lookup over federation. By default, the
|
# Uncomment to allow device display name lookup over federation. By default, the
|
||||||
# Federation API allows other homeservers to obtain device display names of any user
|
# Federation API prevents other homeservers from obtaining the display names of
|
||||||
# on this homeserver. Defaults to 'true'.
|
# user devices on this homeserver. Defaults to 'false'.
|
||||||
#
|
#
|
||||||
#allow_device_name_lookup_over_federation: false
|
#allow_device_name_lookup_over_federation: true
|
||||||
|
|
||||||
|
|
||||||
## Caching ##
|
## Caching ##
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -232,6 +232,13 @@ dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h1 id="upgrading-to-v1590"><a class="header" href="#upgrading-to-v1590">Upgrading to v1.59.0</a></h1>
|
||||||
|
<h2 id="device-name-lookup-over-federation-has-been-disabled-by-default"><a class="header" href="#device-name-lookup-over-federation-has-been-disabled-by-default">Device name lookup over federation has been disabled by default</a></h2>
|
||||||
|
<p>The names of user devices are no longer visible to users on other homeservers by default.
|
||||||
|
Device IDs are unaffected, as these are necessary to facilitate end-to-end encryption.</p>
|
||||||
|
<p>To re-enable this functionality, set the
|
||||||
|
<a href="https://matrix-org.github.io/synapse/v1.59/usage/configuration/config_documentation.html#federation"><code>allow_device_name_lookup_over_federation</code></a>
|
||||||
|
homeserver config option to <code>true</code>.</p>
|
||||||
<h1 id="upgrading-to-v1580"><a class="header" href="#upgrading-to-v1580">Upgrading to v1.58.0</a></h1>
|
<h1 id="upgrading-to-v1580"><a class="header" href="#upgrading-to-v1580">Upgrading to v1.58.0</a></h1>
|
||||||
<h2 id="groupscommunities-feature-has-been-disabled-by-default"><a class="header" href="#groupscommunities-feature-has-been-disabled-by-default">Groups/communities feature has been disabled by default</a></h2>
|
<h2 id="groupscommunities-feature-has-been-disabled-by-default"><a class="header" href="#groupscommunities-feature-has-been-disabled-by-default">Groups/communities feature has been disabled by default</a></h2>
|
||||||
<p>The non-standard groups/communities feature in Synapse has been disabled by default
|
<p>The non-standard groups/communities feature in Synapse has been disabled by default
|
||||||
|
|
|
@ -975,11 +975,11 @@ on this homeserver.</p>
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<p>Config option: <code>allow_device_name_lookup_over_federation</code></p>
|
<p>Config option: <code>allow_device_name_lookup_over_federation</code></p>
|
||||||
<p>Set this option to false to disable device display name lookup over federation. By default, the
|
<p>Set this option to true to allow device display name lookup over federation. By default, the
|
||||||
Federation API allows other homeservers to obtain device display names of any user
|
Federation API prevents other homeservers from obtaining the display names of any user devices
|
||||||
on this homeserver.</p>
|
on this homeserver.</p>
|
||||||
<p>Example configuration:</p>
|
<p>Example configuration:</p>
|
||||||
<pre><code class="language-yaml">allow_device_name_lookup_over_federation: false
|
<pre><code class="language-yaml">allow_device_name_lookup_over_federation: true
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<hr />
|
<hr />
|
||||||
<h2 id="caching"><a class="header" href="#caching">Caching</a></h2>
|
<h2 id="caching"><a class="header" href="#caching">Caching</a></h2>
|
||||||
|
|
|
@ -865,11 +865,11 @@ retention:
|
||||||
#
|
#
|
||||||
#allow_profile_lookup_over_federation: false
|
#allow_profile_lookup_over_federation: false
|
||||||
|
|
||||||
# Uncomment to disable device display name lookup over federation. By default, the
|
# Uncomment to allow device display name lookup over federation. By default, the
|
||||||
# Federation API allows other homeservers to obtain device display names of any user
|
# Federation API prevents other homeservers from obtaining the display names of
|
||||||
# on this homeserver. Defaults to 'true'.
|
# user devices on this homeserver. Defaults to 'false'.
|
||||||
#
|
#
|
||||||
#allow_device_name_lookup_over_federation: false
|
#allow_device_name_lookup_over_federation: true
|
||||||
|
|
||||||
|
|
||||||
## Caching ##
|
## Caching ##
|
||||||
|
|
Loading…
Reference in New Issue