bug fix: mx server shift to default domain

This commit is contained in:
usmannasir
2024-10-16 18:50:34 +05:00
parent a5530f8792
commit beebb43d24
2 changed files with 4 additions and 4 deletions

View File

@@ -317,7 +317,7 @@ team_drive =
if status:
status, result = json.loads(result.rstrip('\n'))
result = json.loads(result.rstrip('\n'))
try:
SnapShotID = result['id'] ## snapshot id that we need to store in db

View File

@@ -254,7 +254,7 @@ class DNS:
## MX Record.
mxValue = "mail." + topLevelDomain
mxValue = topLevelDomain
# record = Records(domainOwner=zone,
# domain_id=zone.id,
@@ -399,7 +399,7 @@ class DNS:
## MX Record.
mxValue = "mail." + topLevelDomain
mxValue = topLevelDomain
# record = Records(domainOwner=zone,
# domain_id=zone.id,
@@ -491,7 +491,7 @@ class DNS:
## MX Records
mxValue = "mail." + actualSubDomain
mxValue = actualSubDomain
# record = Records(domainOwner=zone,
# domain_id=zone.id,