Instance level allow list

main
Bob Mottram 2021-02-15 21:14:05 +00:00
parent 557ca1e787
commit 721ff8ddf5
1 changed files with 20 additions and 8 deletions

View File

@ -175,6 +175,9 @@ def isBlockedDomain(baseDir: str, domain: str) -> bool:
if noOfSections > 2:
shortDomain = domain[noOfSections-2] + '.' + domain[noOfSections-1]
allowFilename = baseDir + '/accounts/allowedinstances.txt'
if not os.path.isfile(allowFilename):
# instance block list
globalBlockingFilename = baseDir + '/accounts/blocking.txt'
if os.path.isfile(globalBlockingFilename):
with open(globalBlockingFilename, 'r') as fpBlocked:
@ -184,6 +187,15 @@ def isBlockedDomain(baseDir: str, domain: str) -> bool:
if shortDomain:
if '*@' + shortDomain in blockedStr:
return True
else:
# instance allow list
if not shortDomain:
if domain not in open(allowFilename).read():
return True
else:
if shortDomain not in open(allowFilename).read():
return True
return False