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
Guilherme Filippo
ISPConfig 3
Commits
529ae7a0
Commit
529ae7a0
authored
Jan 19, 2010
by
tbrehm
Browse files
Fixed: FS#947 - unable to configure very long domains
parent
af6954f2
Changes
6
Hide whitespace changes
Inline
Side-by-side
interface/web/dns/form/dns_soa.tform.php
View file @
529ae7a0
...
...
@@ -82,7 +82,7 @@ $form["tabs"]['dns_soa'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'origin_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}[\.]{0,1}$/'
,
'regex'
=>
'/^[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}[\.]{0,1}$/'
,
'errmsg'
=>
'origin_error_regex'
),
),
'default'
=>
''
,
...
...
interface/web/mail/form/mail_domain.tform.php
View file @
529ae7a0
...
...
@@ -77,7 +77,7 @@ $form["tabs"]['domain'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'domain_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}$/'
,
'regex'
=>
'/^[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}$/'
,
'errmsg'
=>
'domain_error_regex'
),
),
'default'
=>
''
,
...
...
interface/web/mail/form/mail_domain_catchall.tform.php
View file @
529ae7a0
...
...
@@ -74,7 +74,7 @@ $form["tabs"]['catchall'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'domain_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^\@[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}$/'
,
'regex'
=>
'/^\@[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}$/'
,
'errmsg'
=>
'domain_error_regex'
),
),
'default'
=>
''
,
...
...
interface/web/sites/form/web_aliasdomain.tform.php
View file @
529ae7a0
...
...
@@ -77,7 +77,7 @@ $form["tabs"]['domain'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'domain_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}$/'
,
'regex'
=>
'/^[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}$/'
,
'errmsg'
=>
'domain_error_regex'
),
),
'default'
=>
''
,
...
...
interface/web/sites/form/web_domain.tform.php
View file @
529ae7a0
...
...
@@ -97,7 +97,7 @@ $form["tabs"]['domain'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'domain_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}$/'
,
'regex'
=>
'/^[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}$/'
,
'errmsg'
=>
'domain_error_regex'
),
),
'default'
=>
''
,
...
...
interface/web/sites/form/web_subdomain.tform.php
View file @
529ae7a0
...
...
@@ -77,7 +77,7 @@ $form["tabs"]['domain'] = array (
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'domain_error_unique'
),
2
=>
array
(
'type'
=>
'REGEX'
,
'regex'
=>
'/^[\w\.\-]{2,
64
}\.[a-zA-Z]{2,10}$/'
,
'regex'
=>
'/^[\w\.\-]{2,
255
}\.[a-zA-Z]{2,10}$/'
,
'errmsg'
=>
'domain_error_regex'
),
),
'default'
=>
''
,
...
...
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