vpanel-stack/panel/ui/vmail/domains.html
Matthew Saunders Brown a46cc02930 fix isset checks
2022-08-31 14:19:30 -07:00

35 lines
1.5 KiB
HTML

<include href="header.html" />
<check if="isset(@domains_array)">
<true>
<table>
<tr>
<th>Domain</th>
<th>Email</th>
</tr>
<repeat group="{{ @domains_array }}" value="{{ @vmail_domain }}">
<tr>
<td><a href="{{@NAV.fullpath}}/{{ @vmail_domain.domain }}">{{ @vmail_domain.domain }}</a></td>
<td><a href="{{@NAV.fullpath}}/{{ @vmail_domain.domain }}/Accounts">Accounts</a> | <a href="{{@NAV.fullpath}}/{{ @vmail_domain.domain }}/Aliases">Aliases</a> | <a href="{{@NAV.fullpath}}/{{ @vmail_domain.domain }}/Autoresponders">Autoresponders</a> | <a href="{{@NAV.fullpath}}/{{ @vmail_domain.domain }}/Forwards">Forwards</a></td>
</tr>
</repeat>
</table>
<p>
<b>Domain</b> can be selected for domain level settings and email account defaults.<br>
<b>Accounts</b> are individual email addresses.<br>
<b>Aliases</b> are pseudo addresses, they do not actually exist as an email account and are instead delivered to another existing Email Account in the same domain.<br>
<b>Autoresponders</b> can either be an <em>out of office</em> style vacation messages or a generic <nobr><em>autoresponder</em></nobr> that sends an email in response to all incoming messages.<br>
<b>Forwards</b> are for forwading existing email addresses to another email address, either within the same domain or to an entirely different domain.
</p>
</true>
<false>
<p>There are no email domains on this server.</p>
</false>
</check>
<p>
<a href="{{@NAV.fullpath}}/Add">Add new email domain form</a>
</p>
<include href="footer.html" />