Browse Source

new settings section

andre 5 months ago
parent
commit
23eba5ebb5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      app/UI/Client/Setting/Pages/Settings.php

+ 3 - 2
app/UI/Client/Setting/Pages/Settings.php

@@ -134,15 +134,16 @@ class Settings extends DataTable implements ClientArea
             }
         }
 
+        $dkimSet = $api->getDkimDnsRecord($maildomain);
+
         logModuleCall(
             'kerioEmail',
             __FUNCTION__,
-            $this,
+            $dkimSet,
             'Debug Settings',
             $maildomain
         );
 
-        $dkimSet = $api->getDkimDnsRecord($maildomain);
         $dkimArray = explode(PHP_EOL,$dkimSet['detail']);
         $dkimValue = explode(":",$dkimArray[1]);
         $this->domainKey = ltrim($dkimValue[1]);