Fixup config

This commit is contained in:
Erik Johnston 2019-03-15 12:17:26 +00:00
parent 7e94e2ad94
commit de874364e7
2 changed files with 25 additions and 23 deletions

View File

@ -109,6 +109,7 @@ class RegistrationConfig(Config):
#
# Use an Identity Server to establish which 3PIDs are allowed to register?
# Overrides allowed_local_3pids below.
#
#check_is_for_allowed_local_3pids: matrix.org
#
# If you are using an IS you can also check whether that IS registers
@ -119,11 +120,11 @@ class RegistrationConfig(Config):
#
#allowed_local_3pids:
# - medium: email
# pattern: ".*@matrix\\.org"
# pattern: '.*@matrix\\.org'
# - medium: email
# pattern: ".*@vector\\.im"
# pattern: '.*@vector\\.im'
# - medium: msisdn
# pattern: "\\+44"
# pattern: '\\+44'
# If true, stop users from trying to change the 3PIDs associated with
# their accounts.
@ -171,11 +172,13 @@ class RegistrationConfig(Config):
# to this server whenever they change.
# This is an experimental API currently implemented by sydent to support
# cross-homeserver user directories.
#
#replicate_user_profiles_to: example.com
# If specified, attempt to replay registrations, profile changes & 3pid
# bindings on the given target homeserver via the AS API. The HS is authed
# via a given AS token.
#
#shadow_server:
# hs_url: https://shadow.example.com
# hs: shadow.example.com

View File

@ -46,9 +46,8 @@ class UserDirectoryConfig(Config):
#user_directory:
# search_all_users: false
#
# If this is set, user search will be delegated to this ID server instead
# of synapse performing the search itself.
# This is an experimental API.
# # If this is set, user search will be delegated to this ID server instead
# # of synapse performing the search itself.
# # This is an experimental API.
# defer_to_id_server: https://id.example.com
# search_all_users: false
"""