|
|
@@ -10,6 +10,7 @@ use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Text;
|
|
|
use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Switcher;
|
|
|
use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\InputGroup;
|
|
|
use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\InputGroupElements;
|
|
|
+use ThurData\Servers\KerioEmail\Core\Helper\DnsHelper;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
@@ -29,13 +30,16 @@ class EditGeneralSection extends FreeFieldsSection
|
|
|
public function initContent()
|
|
|
{
|
|
|
$maildomain = $this->getWhmcsParamByKey('domain');
|
|
|
+ $dns = new DnsHelper();
|
|
|
+ $selfdns = $dns->selfDns($this->getRequestValue('actionElementId'));
|
|
|
+
|
|
|
|
|
|
logModuleCall(
|
|
|
'kerioEmail',
|
|
|
__FUNCTION__,
|
|
|
$this->getRequestValue('actionElementId'),
|
|
|
'Debug Error',
|
|
|
- $maildomain
|
|
|
+ $selfdns
|
|
|
);
|
|
|
|
|
|
|