2023-07-17 19:15:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2022-12-20 20:17:03 +00:00
|
|
|
|
|
|
|
$values = nsParseCommonRequirements();
|
|
|
|
|
|
|
|
if (!($_POST['priority'] >= 0 AND $_POST['priority'] <= 255))
|
|
|
|
output(403, 'Wrong value for <code>priority</code>.');
|
|
|
|
|
|
|
|
$_POST['host'] = formatAbsoluteDomain($_POST['host']);
|
|
|
|
|
2023-04-28 13:39:05 +00:00
|
|
|
rateLimit();
|
|
|
|
|
2022-12-20 20:17:03 +00:00
|
|
|
knotcZoneExec($_POST['zone'], [
|
|
|
|
$values['domain'],
|
|
|
|
$values['ttl'],
|
|
|
|
'MX',
|
|
|
|
$_POST['priority'],
|
|
|
|
$_POST['host']
|
|
|
|
]);
|
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
output(200, _('Modification done.'));
|