Ver Fonte

new dns helper class

andre há 6 meses atrás
pai
commit
61f80d3d87
1 ficheiros alterados com 13 adições e 0 exclusões
  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;
     }