Commit 969a78d0 authored by Till Brehm's avatar Till Brehm
Browse files

Merge branch '6459-fix-dkim-selector-regex' into 'develop'

Fixed regex for dkim_selector to match only valid entires #6459

Closes #6459

See merge request !1692
parents efb5a55a 280c16b9
Pipeline #13059 passed with stage
in 12 seconds
......@@ -132,7 +132,7 @@ $form["tabs"]['domain'] = array (
'width' => '20',
'maxlength' => '63',
'validators' => array ( 0 => array ( 'type' => 'REGEX',
'regex' => '/^[a-z0-9]{0,63}$/',
'regex' => '/^(?=.*[a-z])[a-z0-9]{1,63}$/',
'errmsg'=> 'dkim_selector_error'),
),
),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment