diff options
author | dklimpel <5740567+dklimpel@users.noreply.github.com> | 2020-03-08 14:49:33 +0100 |
---|---|---|
committer | dklimpel <5740567+dklimpel@users.noreply.github.com> | 2020-03-08 14:49:33 +0100 |
commit | 1f5f3ae8b1c5db96d36ac7c104f13553bc4283da (patch) | |
tree | 545fad0735839ab55e1633b8626cc795acfafb14 /synapse/config | |
parent | Always return a deferred from `get_current_state_deltas`. (#7019) (diff) | |
download | synapse-1f5f3ae8b1c5db96d36ac7c104f13553bc4283da.tar.xz |
Add options to disable setting profile info for prevent changes.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/registration.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py index 9bb3beedbc..d9f452dcea 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -129,6 +129,9 @@ class RegistrationConfig(Config): raise ConfigError("Invalid auto_join_rooms entry %s" % (room_alias,)) self.autocreate_auto_join_rooms = config.get("autocreate_auto_join_rooms", True) + self.disable_set_displayname = config.get("disable_set_displayname", False) + self.disable_set_avatar_url = config.get("disable_set_avatar_url", False) + self.disable_msisdn_registration = config.get( "disable_msisdn_registration", False ) @@ -330,6 +333,14 @@ class RegistrationConfig(Config): #email: https://example.com # Delegate email sending to example.com #msisdn: http://localhost:8090 # Delegate SMS sending to this local process + # If enabled, don't let users set their own display names/avatars + # other than for the very first time (unless they are a server admin). + # Useful when provisioning users based on the contents of a 3rd party + # directory and to avoid ambiguities. + # + # disable_set_displayname: False + # disable_set_avatar_url: False + # Users who register on this homeserver will automatically be joined # to these rooms # |