opensmtpdadmin/list-virtual.php

54 lines
1.3 KiB
PHP
Raw Normal View History

2022-09-04 16:04:56 +02:00
<?php
//
// OpenSMTPD Admin
// by Mischa Peters <mischa at high5 dot nl>
// Copyright (c) 2022 High5!
// License Info: LICENSE.TXT
//
// File: list-virtual.php
//
// Template File: list-virtual.tpl
//
// Template Variables:
//
// list_alias
// list_mailbox
//
2022-09-05 20:29:41 +02:00
// POST / GET Variables:
2022-09-04 16:04:56 +02:00
//
// domain
// offset
//
require_once './functions.inc.php';
include './languages/' . check_language() . '.lang';
$SESSID_USERNAME = check_session();
2022-09-06 13:56:05 +02:00
$ROLE = check_role($SESSID_USERNAME);
2022-09-05 20:29:41 +02:00
if ($ROLE == ADMIN_ROLE) {
2022-09-05 20:29:41 +02:00
$list_domains = list_domains();
} else {
$list_domains = list_domains($SESSID_USERNAME);
}
2022-09-04 16:04:56 +02:00
if ($_SERVER['REQUEST_METHOD'] == "GET") {
$offset = filter_input(INPUT_GET, 'offset', FILTER_VALIDATE_INT) ?? '0';
$limit = PAGE_SIZE;
2022-09-06 13:56:05 +02:00
$domain = filter_input(INPUT_GET, 'domain', FILTER_VALIDATE_DOMAIN);
if (empty($domain) && count($list_domains) > 0) {
$domain = $list_domains[0]['domain'];
}
2022-09-04 16:04:56 +02:00
if (in_array($domain, array_column($list_domains, 'domain'))) {
$domain_key = array_search($domain, array_column($list_domains, 'domain'));
$list_alias = list_aliases($domain, $offset, $limit);
$list_mailbox = list_mailboxes($domain, $offset, $limit);
}
}
include './templates/header.tpl';
include './templates/menu.tpl';
include './templates/list-virtual.tpl';
include './templates/footer.tpl';
?>