dns: make mail address of SOA records configurable

This commit is contained in:
Daniel Reichelt
2021-02-20 20:01:04 +01:00
committed by Daniel Reichelt
parent 5a6343b47c
commit a1b8807b0f
7 changed files with 31 additions and 3 deletions

View File

@@ -132,6 +132,16 @@ return array(
'int_min' => 3600, /* 1 hour */
'int_max' => 2147483647, /* integer max */
'save_method' => 'storeSettingField'
),
'system_soaemail' => array(
'label' => $lng['serversettings']['soaemail'],
'settinggroup' => 'system',
'varname' => 'soaemail',
'type' => 'string',
'string_type' => 'mail',
'string_emptyallowed' => true,
'default' => '',
'save_method' => 'storeSettingField'
)
)
)