Explorar el Código

new dns helper class

andre hace 7 meses
padre
commit
61f80d3d87
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      core/Helper/DnsHelper.php

+ 13 - 0
core/Helper/DnsHelper.php

@@ -145,6 +145,19 @@ class DnsHelper
                 $var['mx'] = 'wrong';
             }
         }
+        $zoneIDcollection = Capsule::table('dns_manager2_zone')
+            ->select('id')
+            ->where('name', '=', $this->params['domain'])
+            ->get();
+
+        	logModuleCall(
+                'kerioEmail',
+                __FUNCTION__,
+                $this->params,
+                'Debug',
+                $zoneIDcollection
+            );
+    
         return $vars;
     }