Display mx, dmarc, ptr status

Fixes #169
This commit is contained in:
Girish Ramakrishnan
2017-02-01 19:09:08 -08:00
parent 5b0abb1b17
commit 1ff800a842
2 changed files with 112 additions and 30 deletions

View File

@@ -10,8 +10,11 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
$scope.dnsConfig = {};
$scope.expectedDnsRecords = {};
$scope.expectedDnsRecordsTypes = [
{ name: 'MX', value: 'mx' },
{ name: 'DKIM', value: 'dkim' },
{ name: 'SPF', value: 'spf' }
{ name: 'SPF', value: 'spf' },
{ name: 'DMARC', value: 'dmarc' },
{ name: 'PTR', value: 'ptr' }
];
$scope.appstoreConfig = {};