Merge pull request #3754 from matrix-org/erikj/fix_whitelist
Allow federation_domain_whitelist to be emtpy listpull/3755/head hhs-1
commit
84b4e76fed
|
@ -0,0 +1 @@
|
||||||
|
Fix 'federation_domain_whitelist' such that an empty list correctly blocks all outbound federation traffic
|
|
@ -133,7 +133,7 @@ class MatrixFederationHttpClient(object):
|
||||||
failures, connection failures, SSL failures.)
|
failures, connection failures, SSL failures.)
|
||||||
"""
|
"""
|
||||||
if (
|
if (
|
||||||
self.hs.config.federation_domain_whitelist and
|
self.hs.config.federation_domain_whitelist is not None and
|
||||||
destination not in self.hs.config.federation_domain_whitelist
|
destination not in self.hs.config.federation_domain_whitelist
|
||||||
):
|
):
|
||||||
raise FederationDeniedError(destination)
|
raise FederationDeniedError(destination)
|
||||||
|
|
Loading…
Reference in New Issue