Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
969a78d0
Commit
969a78d0
authored
Mar 06, 2023
by
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
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
interface/web/mail/form/mail_domain.tform.php
View file @
969a78d0
...
...
@@ -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'
),
),
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment