mail: add ipv6 rdns check

(cherry picked from commit 6fcfa6cac0)
This commit is contained in:
Girish Ramakrishnan
2025-01-08 17:20:33 +01:00
parent e536c94028
commit f5f6b69d5d
5 changed files with 84 additions and 20 deletions

View File

@@ -45,11 +45,12 @@ angular.module('Application').controller('EmailController', ['$scope', '$locatio
$scope.storageQuotaTicks = [ 500*1000*1000, 5*1000*1000*1000, 15*1000*1000*1000, 50*1000*1000*1000, 100*1000*1000*1000 ];
$scope.expectedDnsRecords = {
mx: { },
dkim: { },
spf: { },
dmarc: { },
ptr: { }
mx: {},
dkim: {},
spf: {},
dmarc: {},
ptr4: {},
ptr6: {}
};
$scope.expectedDnsRecordsTypes = [
@@ -57,7 +58,9 @@ angular.module('Application').controller('EmailController', ['$scope', '$locatio
{ name: 'DKIM', value: 'dkim' },
{ name: 'SPF', value: 'spf' },
{ name: 'DMARC', value: 'dmarc' },
{ name: 'PTR', value: 'ptr' }
{ name: 'PTR4', value: 'ptr4' },
{ name: 'PTR6', value: 'ptr6' }
];
$scope.openSubscriptionSetup = function () {