Display SPF/DKIM/PTR records for manual and noop backends

This commit is contained in:
Girish Ramakrishnan
2017-02-02 13:58:13 -08:00
parent 7635482191
commit ff491be976
2 changed files with 2 additions and 5 deletions

View File

@@ -507,9 +507,6 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
function showExpectedDnsRecords(callback) {
callback = callback || function (error) { if (error) console.error(error); };
// nothing to check if mail is not enabled
if (!$scope.mailConfig.enabled) return;
Client.getExpectedDnsRecords(function (error, dnsRecords) {
if (error) return callback(error);