diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2020-03-27 20:15:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-27 19:15:23 +0000 |
commit | 8327eb9280cbcb492e05652a96be9f1cd1c0e7c4 (patch) | |
tree | 1085db3f88c32020e700d60bc897b0a2c24036ad /docs | |
parent | update debian installation instructions to recommend installing `virtualenv` ... (diff) | |
download | synapse-8327eb9280cbcb492e05652a96be9f1cd1c0e7c4.tar.xz |
Add options to prevent users from changing their profile. (#7096)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 1a1d061759..545226f753 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1086,6 +1086,29 @@ account_threepid_delegates: #email: https://example.com # Delegate email sending to example.com #msisdn: http://localhost:8090 # Delegate SMS sending to this local process +# Whether users are allowed to change their displayname after it has +# been initially set. Useful when provisioning users based on the +# contents of a third-party directory. +# +# Does not apply to server administrators. Defaults to 'true' +# +#enable_set_displayname: false + +# Whether users are allowed to change their avatar after it has been +# initially set. Useful when provisioning users based on the contents +# of a third-party directory. +# +# Does not apply to server administrators. Defaults to 'true' +# +#enable_set_avatar_url: false + +# Whether users can change the 3PIDs associated with their accounts +# (email address and msisdn). +# +# Defaults to 'true' +# +#enable_3pid_changes: false + # Users who register on this homeserver will automatically be joined # to these rooms # |