summary refs log tree commit diff
path: root/develop/usage/configuration/config_documentation.html
diff options
context:
space:
mode:
authorHalf-Shot <Half-Shot@users.noreply.github.com>2022-12-01 13:47:10 +0000
committerHalf-Shot <Half-Shot@users.noreply.github.com>2022-12-01 13:47:10 +0000
commitbdc20fc875f3b998010d1888c2265e246e4f0514 (patch)
treed3a8ae481e6ae175a1c97e23c0d6b8bab7db6f56 /develop/usage/configuration/config_documentation.html
parentdeploy: 7aefc7e9fcb8b3630f8cff1b373955f5790ce726 (diff)
downloadsynapse-bdc20fc875f3b998010d1888c2265e246e4f0514.tar.xz
deploy: 71f3e53ad010ba8c219f1076d40915b985760ed9
Diffstat (limited to '')
-rw-r--r--develop/usage/configuration/config_documentation.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/develop/usage/configuration/config_documentation.html b/develop/usage/configuration/config_documentation.html
index 65ea84fc77..fb846cf008 100644
--- a/develop/usage/configuration/config_documentation.html
+++ b/develop/usage/configuration/config_documentation.html
@@ -3011,6 +3011,10 @@ ownership. Defaults to &quot;[%(server_name)s] Validate your email&quot;</li>
 <p>This setting defines options for push notifications.</p>
 <p>This option has a number of sub-options. They are as follows:</p>
 <ul>
+<li><code>enable_push</code>: Enables or disables push notification calculation. Note, disabling this will also
+stop unread counts being calculated for rooms. This mode of operation is intended
+for homeservers which may only have bots or appservice users connected, or are otherwise
+not interested in push/unread counters. This is enabled by default.</li>
 <li><code>include_content</code>: Clients requesting push notifications can either have the body of
 the message sent in the notification poke along with other details
 like the sender, or just the event ID and room ID (<code>event_id_only</code>).
@@ -3030,6 +3034,7 @@ of unread messages.</li>
 </ul>
 <p>Example configuration:</p>
 <pre><code class="language-yaml">push:
+  enable_push: true
   include_content: false
   group_unread_count_by_room: false
 </code></pre>