소스 검색

[Web] MAILCOW_HOSTNAME should not be a CNAME

andryyy 5 년 전
부모
커밋
1c8cca8187
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      data/web/inc/ajax/dns_diagnostics.php

+ 6 - 0
data/web/inc/ajax/dns_diagnostics.php

@@ -320,6 +320,12 @@ foreach ($records as &$record) {
   }
   else {
     $currents = dns_get_record($record[0], $record_types[$record[1]]);
+    if ($record[0] == $mailcow_hostname && ($record[1] == "A" | $record[1] == "AAAA")) {
+      if (!empty(dns_get_record($record[0], DNS_CNAME))) {
+        $currents[0]['ip'] = state_missing . ' <b>(CNAME)</b>';
+        $currents[0]['ipv6'] = state_missing . ' <b>(CNAME)</b>';
+      }
+    }
     if ($record[1] == 'SRV') {
       foreach ($currents as &$current) {
         if ($current['target'] == '') {