Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
482
Issues
482
List
Boards
Labels
Service Desk
Milestones
Merge Requests
23
Merge Requests
23
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISPConfig
ISPConfig 3
Commits
cc08f2c1
Commit
cc08f2c1
authored
May 04, 2016
by
Florian Schaal
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow empty servers (Fixes:
#3874
)
parent
57e9825a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
25 deletions
+9
-25
interface/web/client/form/client.tform.php
interface/web/client/form/client.tform.php
+4
-12
interface/web/client/form/reseller.tform.php
interface/web/client/form/reseller.tform.php
+4
-12
interface/web/client/templates/client_template_edit_limits.htm
...face/web/client/templates/client_template_edit_limits.htm
+1
-1
No files found.
interface/web/client/form/client.tform.php
View file @
cc08f2c1
...
...
@@ -594,9 +594,7 @@ $form["tabs"]['limits'] = array (
'class'
=>
'custom_datasource'
,
'function'
=>
'client_servers'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_mail_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'mail_servers_used'
),
...
...
@@ -919,9 +917,7 @@ $form["tabs"]['limits'] = array (
'class'
=>
'custom_datasource'
,
'function'
=>
'client_servers'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_web_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'web_servers_used'
),
...
...
@@ -1141,9 +1137,7 @@ $form["tabs"]['limits'] = array (
'class'
=>
'custom_datasource'
,
'function'
=>
'client_servers'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_dns_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'dns_servers_used'
),
...
...
@@ -1238,9 +1232,7 @@ $form["tabs"]['limits'] = array (
'class'
=>
'custom_datasource'
,
'function'
=>
'client_servers'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_db_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'db_servers_used'
),
...
...
interface/web/client/form/reseller.tform.php
View file @
cc08f2c1
...
...
@@ -593,9 +593,7 @@ $form["tabs"]['limits'] = array (
'keyfield'
=>
'server_id'
,
'valuefield'
=>
'server_name'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_mail_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'mail_servers_used'
),
...
...
@@ -918,9 +916,7 @@ $form["tabs"]['limits'] = array (
'keyfield'
=>
'server_id'
,
'valuefield'
=>
'server_name'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_web_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'web_servers_used'
),
...
...
@@ -1138,9 +1134,7 @@ $form["tabs"]['limits'] = array (
'keyfield'
=>
'server_id'
,
'valuefield'
=>
'server_name'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_dns_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'dns_servers_used'
),
...
...
@@ -1238,9 +1232,7 @@ $form["tabs"]['limits'] = array (
'keyfield'
=>
'server_id'
,
'valuefield'
=>
'server_name'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'NOTEMPTY'
,
'errmsg'
=>
'no_db_server_error'
),
1
=>
array
(
'type'
=>
'CUSTOM'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'CUSTOM'
,
'class'
=>
'validate_client'
,
'function'
=>
'check_used_servers'
,
'errmsg'
=>
'db_servers_used'
),
...
...
interface/web/client/templates/client_template_edit_limits.htm
View file @
cc08f2c1
...
...
@@ -138,7 +138,7 @@
</a>
</h4>
</div>
<div
id=
"collapseMail"
class=
"panel-collapse collapse"
role=
"tabpanel"
aria-labelledby=
"headingMail>
<div
id=
"collapseMail"
class=
"panel-collapse collapse"
role=
"tabpanel"
aria-labelledby=
"headingMail
"
>
<div
class=
"panel-body"
>
<div
class=
"form-group"
>
<label
for=
"limit_maildomain"
class=
"col-sm-3 control-label"
>
{tmpl_var name='limit_maildomain_txt'}
</label>
...
...
Florian Schaal
@florian030
mentioned in issue
#3896 (closed)
·
May 13, 2016
mentioned in issue
#3896 (closed)
mentioned in issue #3896
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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