summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/threepids.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/synapse/util/threepids.py b/synapse/util/threepids.py

index b51ac0add8..84c56109ca 100644 --- a/synapse/util/threepids.py +++ b/synapse/util/threepids.py
@@ -43,17 +43,19 @@ def check_3pid_allowed(hs, medium, address): {'medium': medium, 'address': address} ) - # Assume false if invalid response - if 'hs' not in data: + # Check for invalid response + if 'hs' not in data and 'shadow_hs' not in data: + defer.returnValue(False) + + # Check if this user is intended to register for this homeserver + if data['hs'] != hs.config.server_name and data['shadow_hs'] != hs.config.server_name: defer.returnValue(False) if data.get('requires_invite', False) and not data.get('invited', False): # Requires an invite but hasn't been invited defer.returnValue(False) - if hs.config.allow_invited_3pids and data.get('invited'): - defer.returnValue(True) - else: - defer.returnValue(data['hs'] == hs.config.server_name) + + defer.returnValue(True) if hs.config.allowed_local_3pids: for constraint in hs.config.allowed_local_3pids: