| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <!-- Begin toolbar -->
- <div class="toolbar">
- <div class="toolbar-inner">
- <div class="toolbar-buttons">
- <?php if ($read_only !== "true") { ?>
- <a href="/add/mail/" class="button button-secondary js-button-create">
- <i class="fas fa-circle-plus icon-green"></i><?= _("Add Mail Domain") ?>
- </a>
- <?php } ?>
- </div>
- <div class="toolbar-right">
- <div class="toolbar-sorting">
- <button class="toolbar-sorting-toggle js-toggle-sorting-menu" type="button" title="<?= _("Sort items") ?>">
- <?= _("Sort by") ?>:
- <span class="u-text-bold">
- <?php if ($_SESSION['userSortOrder'] === 'name') { $label = _('Name'); } else { $label = _('Date'); } ?>
- <?= $label ?> <i class="fas fa-arrow-down-a-z"></i>
- </span>
- </button>
- <ul class="toolbar-sorting-menu animate__animated animate__fadeIn js-sorting-menu u-hidden">
- <li data-entity="sort-accounts" data-sort-as-int="1">
- <span class="name"><?= _("Accounts") ?> <i class="fas fa-arrow-down-a-z"></i></span><span class="up"><i class="fas fa-arrow-up-a-z"></i></span>
- </li>
- <li data-entity="sort-date" data-sort-as-int="1">
- <span class="name <?php if ($_SESSION['userSortOrder'] === 'date') { echo 'active'; } ?>"><?= _("Date") ?> <i class="fas fa-arrow-down-a-z"></i></span><span class="up"><i class="fas fa-arrow-up-a-z"></i></span>
- </li>
- <li data-entity="sort-disk" data-sort-as-int="1">
- <span class="name"><?= _("Disk") ?> <i class="fas fa-arrow-down-a-z"></i></span><span class="up"><i class="fas fa-arrow-up-a-z"></i></span>
- </li>
- <li data-entity="sort-name">
- <span class="name <?php if ($_SESSION['userSortOrder'] === 'name') { echo 'active'; } ?>"><?= _("Name") ?> <i class="fas fa-arrow-down-a-z"></i></span><span class="up"><i class="fas fa-arrow-up-a-z"></i></span>
- </li>
- </ul>
- <?php if ($read_only !== "true") { ?>
- <form x-data x-bind="BulkEdit" action="/bulk/mail/" method="post">
- <input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
- <select class="form-select" name="action">
- <option value=""><?= _("Apply to selected") ?></option>
- <?php if ($_SESSION["userContext"] === "admin") { ?>
- <option value="rebuild"><?= _("Rebuild All") ?></option>
- <?php } ?>
- <option value="suspend"><?= _("Suspend") ?></option>
- <option value="unsuspend"><?= _("Unsuspend") ?></option>
- <option value="delete"><?= _("Delete") ?></option>
- </select>
- <button type="submit" class="toolbar-input-submit" title="<?= _("Apply to selected") ?>">
- <i class="fas fa-arrow-right"></i>
- </button>
- </form>
- <?php } ?>
- </div>
- <div class="toolbar-search">
- <form action="/search/" method="get">
- <input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
- <input type="search" class="form-control js-search-input" name="q" value="<? echo isset($_POST['q']) ? htmlspecialchars($_POST['q']) : '' ?>" title="<?= _("Search") ?>">
- <button type="submit" class="toolbar-input-submit" title="<?= _("Search") ?>">
- <i class="fas fa-magnifying-glass"></i>
- </button>
- </form>
- </div>
- </div>
- </div>
- </div>
- <!-- End toolbar -->
- <div class="container">
- <h1 class="u-text-center u-hide-desktop u-mt20 u-pr30 u-mb20 u-pl30"><?= _("Mail Domains") ?></h1>
- <div class="units-table js-units-container">
- <div class="units-table-header">
- <div class="units-table-cell">
- <input type="checkbox" class="js-toggle-all-checkbox" title="<?= _("Select all") ?>" <?= $display_mode ?>>
- </div>
- <div class="units-table-cell"><?= _("Name") ?></div>
- <div class="units-table-cell"></div>
- <div class="units-table-cell u-text-center"><?= _("Accounts") ?></div>
- <div class="units-table-cell u-text-center"><?= _("Disk") ?></div>
- <div class="units-table-cell u-text-center"><?= _("Anti-Virus") ?></div>
- <div class="units-table-cell u-text-center"><?= _("Spam Filter") ?></div>
- <div class="units-table-cell u-text-center"><?= _("DKIM") ?></div>
- <div class="units-table-cell u-text-center"><?= _("SSL") ?></div>
- </div>
- <!-- Begin mail domain list item loop -->
- <?php
- list($http_host, $port) = explode(':', $_SERVER["HTTP_HOST"].":");
- $webmail = "webmail";
- if (!empty($_SESSION['WEBMAIL_ALIAS'])) $webmail = $_SESSION['WEBMAIL_ALIAS'];
- foreach ($data as $key => $value) {
- ++$i;
- if ($data[$key]['SUSPENDED'] == 'yes') {
- $status = 'suspended';
- $spnd_action = 'unsuspend';
- $spnd_action_title = _('Unsuspend');
- $spnd_icon = 'fa-play';
- $spnd_icon_class = 'icon-green';
- $spnd_confirmation = _('Are you sure you want to unsuspend domain %s?');
- if ($data[$key]['ANTIVIRUS'] == 'no') {
- $antivirus_icon = 'fa-circle-xmark';
- $antivirus_title = _('Disabled');
- } else {
- $antivirus_icon = 'fa-circle-check';
- $antivirus_title = _('Enabled');
- }
- if ($data[$key]['ANTISPAM'] == 'no') {
- $antispam_icon = 'fa-circle-xmark';
- $antispam_title = _('Disabled');
- } else {
- $antispam_icon = 'fa-circle-check';
- $antispam_title = _('Enabled');
- }
- if ($data[$key]['DKIM'] == 'no') {
- $dkim_icon = 'fa-circle-xmark';
- $dkim_title = _('Disabled');
- } else {
- $dkim_icon = 'fa-circle-check';
- $dkim_title = _('Enabled');
- }
- if ($data[$key]['SSL'] == 'no') {
- $ssl_icon = 'fa-circle-xmark';
- $ssl_title = _('Disabled');
- } else {
- $ssl_icon = 'fa-circle-check';
- $ssl_title = _('Enabled');
- }
- } else {
- $status = 'active';
- $spnd_action = 'suspend';
- $spnd_action_title = _('Suspend');
- $spnd_icon = 'fa-pause';
- $spnd_icon_class = 'icon-highlight';
- $spnd_confirmation = _('Are you sure you want to suspend domain %s?');
- if ($data[$key]['ANTIVIRUS'] == 'no') {
- $antivirus_icon = 'fa-circle-xmark icon-red';
- $antivirus_title = _('Disabled');
- } else {
- $antivirus_icon = 'fa-circle-check icon-green';
- $antivirus_title = _('Enabled');
- }
- if ($data[$key]['ANTISPAM'] == 'no') {
- $antispam_icon = 'fa-circle-xmark icon-red';
- $antispam_title = _('Disabled');
- } else {
- $antispam_icon = 'fa-circle-check icon-green';
- $antispam_title = _('Enabled');
- }
- if ($data[$key]['DKIM'] == 'no') {
- $dkim_icon = 'fa-circle-xmark icon-red';
- $dkim_title = _('Disabled');
- } else {
- $dkim_icon = 'fa-circle-check icon-green';
- $dkim_title = _('Enabled');
- }
- if ($data[$key]['SSL'] == 'no') {
- $ssl_icon = 'fa-circle-xmark icon-red';
- $ssl_title = _('Disabled');
- } else {
- $ssl_icon = 'fa-circle-check icon-green';
- $ssl_title = _('Enabled');
- }
- }
- if (empty($data[$key]['CATCHALL'])) {
- $data[$key]['CATCHALL'] = '/dev/null';
- }
- ?>
- <div class="units-table-row <?php if ($status == 'suspended') echo 'disabled'; ?> animate__animated animate__fadeIn js-unit"
- data-sort-date="<?= strtotime($data[$key]['DATE'].' '.$data[$key]['TIME']) ?>"
- data-sort-name="<?= $key ?>"
- data-sort-disk="<?= $data[$key]["U_DISK"] ?>"
- data-sort-accounts="<?= $data[$key]["ACCOUNTS"] ?>">
- <div class="units-table-cell">
- <div>
- <input id="check<?= $i ?>" class="js-unit-checkbox" type="checkbox" title="<?= _("Select") ?>" name="domain[]" value="<?= $key ?>" <?= $display_mode ?>>
- <label for="check<?= $i ?>" class="u-hide-desktop"><?= _("Select") ?></label>
- </div>
- </div>
- <div class="units-table-cell units-table-heading-cell u-text-bold">
- <span class="u-hide-desktop"><?= _("Name") ?>:</span>
- <a href="?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>" title="<?= _("Mail Accounts") ?>: <?= $key ?>">
- <?= $key ?>
- </a>
- </div>
- <div class="units-table-cell">
- <ul class="units-table-row-actions">
- <?php if ($read_only === "true") { ?>
- <li class="units-table-row-action shortcut-l" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>"
- title="<?= _("Mail Accounts") ?>"
- >
- <i class="fas fa-users icon-blue"></i>
- <span class="u-hide-desktop"><?= _("Mail Accounts") ?></span>
- </a>
- </li>
- <li class="units-table-row-action shortcut-l" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="?domain=<?= $key ?>&dns=1&token=<?= $_SESSION["token"] ?>"
- title="<?= _("DNS Records") ?>"
- >
- <i class="fas fa-book-atlas icon-blue"></i>
- <span class="u-hide-desktop"><?= _("DNS Records") ?></span>
- </a>
- </li>
- <?php if ($data[$key]["SUSPENDED"] == "no") { ?>
- <li class="units-table-row-action" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="http://<?= $webmail ?>.<?= $key ?>/"
- target="_blank"
- title="<?= _("Open Webmail") ?>"
- >
- <i class="fas fa-paper-plane icon-lightblue"></i>
- <span class="u-hide-desktop"><?= _("Open Webmail") ?></span>
- </a>
- </li>
- <?php } ?>
- <?php } else { ?>
- <?php if ($data[$key]["SUSPENDED"] == "no") { ?>
- <li class="units-table-row-action shortcut-n" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="/add/mail/?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>"
- title="<?= _("Add Mail Account") ?>"
- >
- <i class="fas fa-circle-plus icon-green"></i>
- <span class="u-hide-desktop"><?= _("Add Mail Account") ?></span>
- </a>
- </li>
- <?php if ($_SESSION["WEBMAIL_SYSTEM"]) { ?>
- <?php if (!empty($data[$key]["WEBMAIL"])) { ?>
- <li class="units-table-row-action" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="http://<?= $webmail ?>.<?= $key ?>/"
- target="_blank"
- title="<?= _("Open Webmail") ?>"
- >
- <i class="fas fa-paper-plane icon-lightblue"></i>
- <span class="u-hide-desktop"><?= _("Open Webmail") ?></span>
- </a>
- </li>
- <?php } ?>
- <?php } ?>
- <li class="units-table-row-action shortcut-enter" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="/edit/mail/?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>"
- title="<?= _("Edit Mail Domain") ?>"
- >
- <i class="fas fa-pencil icon-orange"></i>
- <span class="u-hide-desktop"><?= _("Edit Mail Domain") ?></span>
- </a>
- </li>
- <?php } ?>
- <li class="units-table-row-action shortcut-l" data-key-action="href">
- <a
- class="units-table-row-action-link"
- href="?domain=<?= $key ?>&dns=1&token=<?= $_SESSION["token"] ?>"
- title="<?= _("DNS Records") ?>"
- >
- <i class="fas fa-book-atlas icon-blue"></i>
- <span class="u-hide-desktop"><?= _("DNS Records") ?></span>
- </a>
- </li>
- <li class="units-table-row-action shortcut-s" data-key-action="js">
- <a
- class="units-table-row-action-link data-controls js-confirm-action"
- href="/<?= $spnd_action ?>/mail/?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>"
- title="<?= $spnd_action_title ?>"
- data-confirm-title="<?= $spnd_action_title ?>"
- data-confirm-message="<?= sprintf($spnd_confirmation, $key) ?>"
- >
- <i class="fas <?= $spnd_icon ?> <?= $spnd_icon_class ?>"></i>
- <span class="u-hide-desktop"><?= $spnd_action_title ?></span>
- </a>
- </li>
- <li class="units-table-row-action shortcut-delete" data-key-action="js">
- <a
- class="units-table-row-action-link data-controls js-confirm-action"
- href="/delete/mail/?domain=<?= $key ?>&token=<?= $_SESSION["token"] ?>"
- title="<?= _("Delete") ?>"
- data-confirm-title="<?= _("Delete") ?>"
- data-confirm-message="<?= sprintf(_("Are you sure you want to delete domain %s?"), $key) ?>"
- >
- <i class="fas fa-trash icon-red"></i>
- <span class="u-hide-desktop"><?= _("Delete") ?></span>
- </a>
- </li>
- <?php } ?>
- </ul>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("Accounts") ?>:</span>
- <?php
- if ($data[$key]['ACCOUNTS']) {
- $mail_accounts = htmlentities($data[$key]['ACCOUNTS']);
- } else {
- $mail_accounts = '0';
- }
- ?>
- <?= $mail_accounts ?>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("Disk") ?>:</span>
- <span class="u-text-bold">
- <?= humanize_usage_size($data[$key]["U_DISK"]) ?>
- </span>
- <span class="u-text-small">
- <?= humanize_usage_measure($data[$key]["U_DISK"]) ?>
- </span>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("Anti-Virus") ?>:</span>
- <i class="fas <?= $antivirus_icon ?>" title="<?= $antivirus_title ?>"></i>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("Spam Filter") ?>:</span>
- <i class="fas <?= $antispam_icon ?>" title="<?= $antispam_title ?>"></i>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("DKIM") ?>:</span>
- <i class="fas <?= $dkim_icon ?>" title="<?= $dkim_title ?>"></i>
- </div>
- <div class="units-table-cell u-text-center-desktop">
- <span class="u-hide-desktop u-text-bold"><?= _("SSL") ?>:</span>
- <i class="fas <?= $ssl_icon ?>" title="<?= $ssl_title ?>"></i>
- </div>
- </div>
- <?php } ?>
- </div>
- </div>
- <footer class="app-footer">
- <div class="container app-footer-inner">
- <p>
- <?php printf(ngettext("%d mail domain", "%d mail domains", $i), $i); ?>
- </p>
- </div>
- </footer>
|