update the website code files, fix dns check for DKIM

This commit is contained in:
nahakubuilde
2025-06-08 22:51:07 +01:00
parent a7e41ad231
commit a0dfe8a535
24 changed files with 2747 additions and 1630 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ class DKIMManager:
return {
'name': f'{dkim_key.selector}._domainkey.{domain_name}',
'type': 'TXT',
'value': f'v=DKIM1; k=rsa; p={public_key_data}'
'value': f'"v=DKIM1; k=rsa; p={public_key_data}"' # Wrap in quotes
}
return None