[Web] Allow underscore and hyphen in DKIM selector (#3643)
This change allows to have cleaner DNS zones as mail security related entries usually begin with _. Co-authored-by: Václav Silber <vaclav.silber@poski.com>master
parent
ca4e13d517
commit
00f5f744d0
|
@ -34,7 +34,7 @@ function dkim($_action, $_data = null, $privkey = false) {
|
||||||
);
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!ctype_alnum($dkim_selector)) {
|
if (!ctype_alnum(str_replace(['-', '_'], '', $dkim_selector))) {
|
||||||
$_SESSION['return'][] = array(
|
$_SESSION['return'][] = array(
|
||||||
'type' => 'danger',
|
'type' => 'danger',
|
||||||
'log' => array(__FUNCTION__, $_action, $_data, $privkey),
|
'log' => array(__FUNCTION__, $_action, $_data, $privkey),
|
||||||
|
|
Loading…
Reference in New Issue