mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-09 11:32:59 -08:00
91 lines
4.4 KiB
HTML
91 lines
4.4 KiB
HTML
<?php
|
|
$back = $_SESSION['back'];
|
|
if (empty($back)) {
|
|
$back = "location.href='/list/mail/'";
|
|
} else {
|
|
$back = "location.href='".$back."'";
|
|
}
|
|
?>
|
|
<table class="submenu">
|
|
<tr>
|
|
<td style="padding: 20px 10px;" ><a class="name"><b><?php print __('Adding Mail Domain');?></b></a>
|
|
<?php
|
|
if (!empty($_SESSION['error_msg'])) {
|
|
echo "<span class=\"vst-error\"> → ".$_SESSION['error_msg']."</span>";
|
|
} else {
|
|
if (!empty($_SESSION['ok_msg'])) {
|
|
echo "<span class=\"vst-ok\"> → ".$_SESSION['ok_msg']."</span>";
|
|
}
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<form id="vstobjects" name="v_add_mail" method="post">
|
|
<table class='data'>
|
|
<tr class="data-add">
|
|
<td class="data-dotted">
|
|
<table class="data-col1">
|
|
<tr><td></td></tr>
|
|
</table>
|
|
</td>
|
|
<td class="data-dotted">
|
|
<table class="data-col2" width="600px">
|
|
<tr>
|
|
<td class="vst-text" style="padding: 24px 0 0 0;">
|
|
<?php print __('Domain');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_domain" <?php if (!empty($v_domain)) echo "value=".$v_domain; ?> >
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text" style="padding: 12px 0 0 0;">
|
|
<?php print __('AntiSpam Support');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" size="20" class="vst-checkbox" name="v_antispam" <?php if ((empty($v_antispam)) || ($v_antispam == 'yes')) echo "checked=yes"; ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text" style="padding: 12px 0 0 0;">
|
|
<?php print __('AntiVirus Support');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" size="20" class="vst-checkbox" name="v_antivirus" <?php if ((empty($v_antivirus)) || ($v_antivirus == 'yes')) echo "checked=yes"; ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text" style="padding: 12px 0 0 0;">
|
|
<?php print __('DKIM Support');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" size="20" class="vst-checkbox" name="v_dkim" <?php if (isset($v_dkim)&&$v_dkim == 'yes') echo "checked=yes"; ?>>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table class="data-col2">
|
|
<tr>
|
|
<td style="padding: 24px 0 0 0;" width="116px">
|
|
<input type="submit" name="ok" value="<?php print __('Add');?>" class="button">
|
|
</td>
|
|
<td style="padding: 24px 0 0 0;">
|
|
<input type="button" class="button" value="<?php print __('Back');?>" onclick="<?php echo $back ?>">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|