This commit is contained in:
anoadragon453 2024-09-23 12:35:29 +00:00
parent ad6421ce86
commit 3b4b4210ed
5 changed files with 22 additions and 2 deletions

View file

@ -4508,6 +4508,15 @@ ownership. Defaults to &quot;[%(server_name)s] Validate your email&quot;</li>
password_reset: &quot;[%(server_name)s] Password reset&quot; password_reset: &quot;[%(server_name)s] Password reset&quot;
email_validation: &quot;[%(server_name)s] Validate your email&quot; email_validation: &quot;[%(server_name)s] Validate your email&quot;
</code></pre> </code></pre>
<hr />
<h3 id="max_event_delay_duration"><a class="header" href="#max_event_delay_duration"><code>max_event_delay_duration</code></a></h3>
<p>The maximum allowed duration by which sent events can be delayed, as per
<a href="https://github.com/matrix-org/matrix-spec-proposals/pull/4140">MSC4140</a>.
Must be a positive value if set.</p>
<p>Defaults to no duration (<code>null</code>), which disallows sending delayed events.</p>
<p>Example configuration:</p>
<pre><code class="language-yaml">max_event_delay_duration: 24h
</code></pre>
<h2 id="homeserver-blocking"><a class="header" href="#homeserver-blocking">Homeserver blocking</a></h2> <h2 id="homeserver-blocking"><a class="header" href="#homeserver-blocking">Homeserver blocking</a></h2>
<p>Useful options for Synapse admins.</p> <p>Useful options for Synapse admins.</p>
<hr /> <hr />
@ -11737,6 +11746,7 @@ information.</p>
</code></pre> </code></pre>
<p>Additionally, the following REST endpoints can be handled for GET requests:</p> <p>Additionally, the following REST endpoints can be handled for GET requests:</p>
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/ <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/
^/_matrix/client/unstable/org.matrix.msc4140/delayed_events
</code></pre> </code></pre>
<p>Pagination requests can also be handled, but all requests for a given <p>Pagination requests can also be handled, but all requests for a given
room must be routed to the same instance. Additionally, care must be taken to room must be routed to the same instance. Additionally, care must be taken to

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -848,6 +848,15 @@ ownership. Defaults to &quot;[%(server_name)s] Validate your email&quot;</li>
password_reset: &quot;[%(server_name)s] Password reset&quot; password_reset: &quot;[%(server_name)s] Password reset&quot;
email_validation: &quot;[%(server_name)s] Validate your email&quot; email_validation: &quot;[%(server_name)s] Validate your email&quot;
</code></pre> </code></pre>
<hr />
<h3 id="max_event_delay_duration"><a class="header" href="#max_event_delay_duration"><code>max_event_delay_duration</code></a></h3>
<p>The maximum allowed duration by which sent events can be delayed, as per
<a href="https://github.com/matrix-org/matrix-spec-proposals/pull/4140">MSC4140</a>.
Must be a positive value if set.</p>
<p>Defaults to no duration (<code>null</code>), which disallows sending delayed events.</p>
<p>Example configuration:</p>
<pre><code class="language-yaml">max_event_delay_duration: 24h
</code></pre>
<h2 id="homeserver-blocking"><a class="header" href="#homeserver-blocking">Homeserver blocking</a></h2> <h2 id="homeserver-blocking"><a class="header" href="#homeserver-blocking">Homeserver blocking</a></h2>
<p>Useful options for Synapse admins.</p> <p>Useful options for Synapse admins.</p>
<hr /> <hr />

View file

@ -420,6 +420,7 @@ information.</p>
</code></pre> </code></pre>
<p>Additionally, the following REST endpoints can be handled for GET requests:</p> <p>Additionally, the following REST endpoints can be handled for GET requests:</p>
<pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/ <pre><code>^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/
^/_matrix/client/unstable/org.matrix.msc4140/delayed_events
</code></pre> </code></pre>
<p>Pagination requests can also be handled, but all requests for a given <p>Pagination requests can also be handled, but all requests for a given
room must be routed to the same instance. Additionally, care must be taken to room must be routed to the same instance. Additionally, care must be taken to