Skip to content

Commit df75da9

Browse files
committed
keep quota related settings grouped together
1 parent cde635c commit df75da9

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

interface/web/admin/form/server_config.tform.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -654,12 +654,6 @@
654654
'width' => '10',
655655
'maxlength' => '15'
656656
),
657-
'mailbox_quota_stats' => array (
658-
'datatype' => 'VARCHAR',
659-
'formtype' => 'CHECKBOX',
660-
'default' => 'y',
661-
'value' => array(0 => 'n', 1 => 'y')
662-
),
663657
'realtime_blackhole_list' => array(
664658
'datatype' => 'VARCHAR',
665659
'formtype' => 'TEXT',
@@ -672,6 +666,12 @@
672666
'width' => '40',
673667
'maxlength' => '255'
674668
),
669+
'mailbox_quota_stats' => array (
670+
'datatype' => 'VARCHAR',
671+
'formtype' => 'CHECKBOX',
672+
'default' => 'y',
673+
'value' => array(0 => 'n', 1 => 'y')
674+
),
675675
'overquota_notify_admin' => array(
676676
'datatype' => 'VARCHAR',
677677
'formtype' => 'CHECKBOX',

interface/web/admin/templates/server_config_mail_edit.htm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,17 @@ <h1><tmpl_var name="list_head_txt"> {tmpl_var name='server_name'}</h1>
9999
<label for="message_size_limit" class="col-sm-3 control-label">{tmpl_var name='message_size_limit_txt'}</label>
100100
<div class="col-sm-6"><input type="text" name="message_size_limit" id="message_size_limit" value="{tmpl_var name='message_size_limit'}" class="form-control" /></div><div class="col-sm-3 input-sm">&nbsp;MB
101101
</div></div>
102+
<div class="form-group">
103+
<label for="realtime_blackhole_list" class="col-sm-3 control-label">{tmpl_var name='realtime_blackhole_list_txt'}</label>
104+
<div class="col-sm-6"><input type="text" name="realtime_blackhole_list" id="realtime_blackhole_list" value="{tmpl_var name='realtime_blackhole_list'}" class="form-control" /></div><div class="col-sm-3 input-sm">&nbsp;{tmpl_var name='realtime_blackhole_list_note_txt'}
105+
</div></div>
102106
<div class="form-group">
103107
<label class="col-sm-3 control-label">{tmpl_var name='mailbox_quota_stats_txt'}</label>
104108
<div class="col-sm-9">
105109
{tmpl_var name='mailbox_quota_stats'}
106110
</div>
107111
</div>
108112
<div class="form-group">
109-
<label for="realtime_blackhole_list" class="col-sm-3 control-label">{tmpl_var name='realtime_blackhole_list_txt'}</label>
110-
<div class="col-sm-6"><input type="text" name="realtime_blackhole_list" id="realtime_blackhole_list" value="{tmpl_var name='realtime_blackhole_list'}" class="form-control" /></div><div class="col-sm-3 input-sm">&nbsp;{tmpl_var name='realtime_blackhole_list_note_txt'}
111-
</div></div>
112-
<div class="form-group">
113113
<label class="col-sm-3 control-label">{tmpl_var name='overquota_notify_admin_txt'}</label>
114114
<div class="col-sm-9">
115115
{tmpl_var name='overquota_notify_admin'}

0 commit comments

Comments
 (0)