mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Make user presence-status tracking configurable
This commit is contained in:
parent
7350842d9b
commit
b49f4531e8
@ -1,3 +1,12 @@
|
||||
# 2018-10-05
|
||||
|
||||
## Presence tracking made configurable
|
||||
|
||||
The playbook can now enable/disable user presence-status tracking in Synapse, through the playbook's `matrix_synapse_use_presence` variable (having a default value of `true` - enabled).
|
||||
|
||||
If users participate in large rooms with many other servers, disabling presence will decrease server load significantly.
|
||||
|
||||
|
||||
# 2018-09-27
|
||||
|
||||
## Synapse Cache Factor made configurable
|
||||
|
@ -68,6 +68,11 @@ matrix_synapse_rc_message_burst_count: 10.0
|
||||
# (things like number of users, number of messages sent, uptime, load, etc.)
|
||||
matrix_synapse_report_stats: false
|
||||
|
||||
# Controls whether the Matrix server will track presence status (online, offline, unavailable) for users.
|
||||
# If users participate in large rooms with many other servers,
|
||||
# disabling this will decrease server load significantly.
|
||||
matrix_synapse_use_presence: true
|
||||
|
||||
# Controls password-peppering for Matrix Synapse. Not to be changed after initial setup.
|
||||
matrix_synapse_password_config_pepper: ""
|
||||
|
||||
|
@ -96,7 +96,7 @@ public_baseurl: https://{{ hostname_matrix }}/
|
||||
soft_file_limit: 0
|
||||
|
||||
# Set to false to disable presence tracking on this homeserver.
|
||||
use_presence: true
|
||||
use_presence: {{ matrix_synapse_use_presence|to_yaml }}
|
||||
|
||||
# The GC threshold parameters to pass to `gc.set_threshold`, if defined
|
||||
# gc_thresholds: [700, 10, 10]
|
||||
|
Loading…
Reference in New Issue
Block a user