summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/http/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py

index 12287fb4ec..9f6bdeb013 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py
@@ -111,6 +111,8 @@ class IPBlacklistingResolver(object): logger.info( "Dropped %s from DNS resolution to %s" % (ip_address, hostname) ) + # Only raise a 403 if this request originated from a + # client-server call if not self._from_federation: raise SynapseError(403, "IP address blocked by IP blacklist entry")