128 lines
3.9 KiB
PHP
128 lines
3.9 KiB
PHP
|
<?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: admin_list-virtual.tpl
|
||
|
//
|
||
|
// Template Variables:
|
||
|
//
|
||
|
// tMessage
|
||
|
// tAlias
|
||
|
// tMailbox
|
||
|
//
|
||
|
// Form POST \ GET Variables:
|
||
|
//
|
||
|
// fDomain
|
||
|
//
|
||
|
require("../variables.inc.php");
|
||
|
require("../config.inc.php");
|
||
|
require("../functions.inc.php");
|
||
|
include("../languages/" . check_language() . ".lang");
|
||
|
|
||
|
$list_domains = list_domains();
|
||
|
|
||
|
$tAlias = array();
|
||
|
$tMailbox = array();
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
||
|
$fDisplay = 0;
|
||
|
$page_size = $CONF['page_size'];
|
||
|
|
||
|
if (isset($_GET['domain'])) $fDomain = escape_string($_GET['domain']);
|
||
|
if (isset($_GET['limit'])) $fDisplay = escape_string($_GET['limit']);
|
||
|
|
||
|
if ((is_array($list_domains) and count($list_domains) > 0)) if (empty($fDomain)) $fDomain = $list_domains[0];
|
||
|
|
||
|
$limit = get_domain_properties($fDomain);
|
||
|
|
||
|
if ((is_array($list_domains) and count($list_domains) > 0)) if (empty($fDomain)) $fDomain = $list_domains[1];
|
||
|
|
||
|
if ($CONF['alias_control'] == "YES") {
|
||
|
$query = "SELECT alias.address,alias.goto,alias.modified FROM alias WHERE alias.domain='$fDomain' ORDER BY alias.address LIMIT $fDisplay, $page_size";
|
||
|
} else {
|
||
|
$query = "SELECT alias.address,alias.goto,alias.modified FROM alias LEFT JOIN mailbox ON alias.address=mailbox.username WHERE alias.domain='$fDomain' AND mailbox.maildir IS NULL ORDER BY alias.address LIMIT $fDisplay, $page_size";
|
||
|
}
|
||
|
|
||
|
$result = db_query("$query");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tAlias[] = $row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$result = db_query("SELECT * FROM mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $fDisplay, $page_size");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tMailbox[] = $row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (isset($limit)) {
|
||
|
if ($fDisplay >= $page_size) {
|
||
|
$tDisplay_back_show = 1;
|
||
|
$tDisplay_back = $fDisplay - $page_size;
|
||
|
}
|
||
|
if (($limit['alias_count'] > $page_size) or ($limit['mailbox_count'] > $page_size)) {
|
||
|
$tDisplay_up_show = 1;
|
||
|
}
|
||
|
if ((($fDisplay + $page_size) < $limit['alias_count']) or (($fDisplay + $page_size) < $limit['mailbox_count'])) {
|
||
|
$tDisplay_next_show = 1;
|
||
|
$tDisplay_next = $fDisplay + $page_size;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
||
|
$fDisplay = 0;
|
||
|
$page_size = $CONF['page_size'];
|
||
|
|
||
|
$fDomain = escape_string($_POST['fDomain']);
|
||
|
if (isset($_POST['limit'])) $fDisplay = escape_string($_POST['limit']);
|
||
|
|
||
|
$limit = get_domain_properties($fDomain);
|
||
|
|
||
|
if ($CONF['alias_control'] == "YES") {
|
||
|
$query = "SELECT alias.address,alias.goto,alias.modified FROM alias WHERE alias.domain='$fDomain' ORDER BY alias.address LIMIT $fDisplay, $page_size";
|
||
|
} else {
|
||
|
$query = "SELECT alias.address,alias.goto,alias.modified FROM alias LEFT JOIN mailbox ON alias.address=mailbox.username WHERE alias.domain='$fDomain' AND mailbox.maildir IS NULL ORDER BY alias.address LIMIT $fDisplay, $page_size";
|
||
|
}
|
||
|
|
||
|
$result = db_query("$query");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tAlias[] = $row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$result = db_query("SELECT * FROM mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $fDisplay, $page_size");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tMailbox[] = $row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (isset($limit)) {
|
||
|
if ($fDisplay >= $page_size) {
|
||
|
$tDisplay_back_show = 1;
|
||
|
$tDisplay_back = $fDisplay - $page_size;
|
||
|
}
|
||
|
if (($limit['alias_count'] > $page_size) or ($limit['mailbox_count'] > $page_size)) {
|
||
|
$tDisplay_up_show = 1;
|
||
|
}
|
||
|
if ((($fDisplay + $page_size) < $limit['alias_count']) or (($fDisplay + $page_size) < $limit['mailbox_count'])) {
|
||
|
$tDisplay_next_show = 1;
|
||
|
$tDisplay_next = $fDisplay + $page_size;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
include("../templates/header.tpl");
|
||
|
include("../templates/admin_menu.tpl");
|
||
|
include("../templates/admin_list-virtual.tpl");
|
||
|
include("../templates/footer.tpl");
|
||
|
?>
|