summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorBrendan Abolivier <contact@brendanabolivier.com>2019-04-04 17:25:47 +0100
committerGitHub <noreply@github.com>2019-04-04 17:25:47 +0100
commit8e85493b0cdae25dd07c94c010dbf11bca947c2d (patch)
treeb29f75868cf26a0de6005f28d700d82e738cfacc /synapse/config
parentClean up the database pagination code (#5007) (diff)
downloadsynapse-8e85493b0cdae25dd07c94c010dbf11bca947c2d.tar.xz
Add config option to block users from looking up 3PIDs (#5010)
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/registration.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py
index f6b2b9ceee..fcfda341e9 100644
--- a/synapse/config/registration.py
+++ b/synapse/config/registration.py
@@ -33,6 +33,7 @@ class RegistrationConfig(Config):
 
         self.registrations_require_3pid = config.get("registrations_require_3pid", [])
         self.allowed_local_3pids = config.get("allowed_local_3pids", [])
+        self.enable_3pid_lookup = config.get("enable_3pid_lookup", True)
         self.registration_shared_secret = config.get("registration_shared_secret")
 
         self.bcrypt_rounds = config.get("bcrypt_rounds", 12)
@@ -97,6 +98,10 @@ class RegistrationConfig(Config):
         #  - medium: msisdn
         #    pattern: '\\+44'
 
+        # Enable 3PIDs lookup requests to identity servers from this server.
+        #
+        #enable_3pid_lookup: true
+
         # If set, allows registration of standard or admin accounts by anyone who
         # has the shared secret, even if registration is otherwise disabled.
         #