mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Make sample config allowed_local_3pids regex stricter. (#9719)
The regex should be terminated so that subdomain matches of another domain are not accepted. Just ensuring that someone doesn't shoot themselves in the foot by copying our example. Signed-off-by: Denis Kasak <dkasak@termina.org.uk>
This commit is contained in:
parent
670564446c
commit
5ff8eb97c6
1
changelog.d/9719.doc
Normal file
1
changelog.d/9719.doc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Make the allowed_local_3pids regex example in the sample config stricter.
|
@ -1246,9 +1246,9 @@ account_validity:
|
|||||||
#
|
#
|
||||||
#allowed_local_3pids:
|
#allowed_local_3pids:
|
||||||
# - medium: email
|
# - medium: email
|
||||||
# pattern: '.*@matrix\.org'
|
# pattern: '^[^@]+@matrix\.org$'
|
||||||
# - medium: email
|
# - medium: email
|
||||||
# pattern: '.*@vector\.im'
|
# pattern: '^[^@]+@vector\.im$'
|
||||||
# - medium: msisdn
|
# - medium: msisdn
|
||||||
# pattern: '\+44'
|
# pattern: '\+44'
|
||||||
|
|
||||||
|
@ -298,9 +298,9 @@ class RegistrationConfig(Config):
|
|||||||
#
|
#
|
||||||
#allowed_local_3pids:
|
#allowed_local_3pids:
|
||||||
# - medium: email
|
# - medium: email
|
||||||
# pattern: '.*@matrix\\.org'
|
# pattern: '^[^@]+@matrix\\.org$'
|
||||||
# - medium: email
|
# - medium: email
|
||||||
# pattern: '.*@vector\\.im'
|
# pattern: '^[^@]+@vector\\.im$'
|
||||||
# - medium: msisdn
|
# - medium: msisdn
|
||||||
# pattern: '\\+44'
|
# pattern: '\\+44'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user