Skip to content

Commit 197e238

Browse files
author
Kristan Kenney
committed
Merge branch 'bugfix-ui-0305'
2 parents 1042896 + 2d73773 commit 197e238

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

web/templates/admin/edit_mail.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,17 @@
9696
<table style="display:<?php if ($v_ssl == 'no' ) { echo 'none';} else {echo 'block';}?> ;" id="ssltable">
9797
<tr>
9898
<td class="input-label vst-text">
99+
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_letsencrypt" <?php if($v_letsencrypt == 'yes' || $v_letencrypt == 'on') echo "checked=yes" ?> onclick="App.Actions.MAIL.toggle_letsencrypt(this)"> <?php print __('Lets Encrypt Support');?></label>
100+
</td>
101+
</tr>
102+
<tr>
103+
<td>
99104
<span class="alert alert-info alert-with-icon">
100105
<i class="fas fa-exclamation"></i>
101-
<?=__("Let's Encrypt for mail needs a dns record for mail.$v_domain and $v_webmail_alias!")?><br/>
106+
<?=__("To enable Let's Encrypt SSL, ensure that DNS records exist for mail.$v_domain and $v_webmail_alias!")?><br/>
102107
</span>
103-
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_letsencrypt" <?php if($v_letsencrypt == 'yes' || $v_letencrypt == 'on') echo "checked=yes" ?> onclick="App.Actions.MAIL.toggle_letsencrypt(this)"> <?php print __('Lets Encrypt Support');?></label>
104108
</td>
105109
</tr>
106-
107110
<tr>
108111
<td class="vst-text input-label">
109112
<?php print __('SSL Certificate');?>

web/templates/admin/list_mail_acc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@
125125
<div class="clearfix l-unit__stat-col--left text-center"><b>
126126
<? if($data[$key]['SUSPENDED'] == 'no'){ ?>
127127
<? if($data[$key]['ALIAS'] == ''){ ?>
128-
0
128+
<i class="fas fa-minus-circle"></i>
129129
<? } else {?>
130130
<i class="fas fa-check-circle status-icon green"></i>
131131
<? } ?>
132132
<? } else {?>
133133
<? if($data[$key]['ALIAS'] == ''){ ?>
134-
0
134+
<i class="fas fa-minus-circle"></i>
135135
<? } else {?>
136136
<i class="fas fa-check-circle"></i>
137137
<? } ?>

web/templates/user/list_mail_acc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@
125125
<div class="clearfix l-unit__stat-col--left text-center"><b>
126126
<? if($data[$key]['SUSPENDED'] == 'no'){ ?>
127127
<? if($data[$key]['ALIAS'] == ''){ ?>
128-
0
128+
<i class="fas fa-minus-circle"></i>
129129
<? } else {?>
130130
<i class="fas fa-check-circle status-icon green"></i>
131131
<? } ?>
132132
<? } else {?>
133133
<? if($data[$key]['ALIAS'] == ''){ ?>
134-
0
134+
<i class="fas fa-minus-circle"></i>
135135
<? } else {?>
136136
<i class="fas fa-check-circle"></i>
137137
<? } ?>

0 commit comments

Comments
 (0)