added configuration for bind's TTL value, fixes #166

This commit is contained in:
Michael Kaufmann (d00p)
2010-04-20 06:22:11 +00:00
parent 4f5cb34f00
commit 96219f406d
7 changed files with 29 additions and 3 deletions

View File

@@ -59,6 +59,16 @@ return array(
'default' => '',
'save_method' => 'storeSettingField',
),
'system_defaultttl' => array(
'label' => $lng['serversettings']['defaultttl'],
'settinggroup' => 'system',
'varname' => 'defaultttl',
'type' => 'int',
'default' => 604800, /* 1 week */
'int_min' => 86400, /* 1 day */
'int_max' => 2147483647, /* integer max */
'save_method' => 'storeSettingField',
),
),
),
),