bug fix: email list function

This commit is contained in:
usmannasir
2024-11-01 14:46:53 +04:00
parent 9fbdc60978
commit d83c5a998d
5 changed files with 14 additions and 7 deletions

View File

@@ -560,7 +560,8 @@ class MailServerManager(multi.Thread):
if os.path.exists(postfixMapPath):
postfixMapData = open(postfixMapPath, 'r').read()
postfixMapData = open(postfixMapPath, 'r', encoding='utf-8').read()
if postfixMapData.find(selectedDomain) == -1:
mailConfigured = 0