mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-03 16:43:09 -08:00
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
session_start();
|
|
$TAB = 'MAIL';
|
|
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Header
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
|
|
|
|
// Panel
|
|
top_panel($user,$TAB);
|
|
|
|
// Data
|
|
if ($_SESSION['user'] == 'admin') {
|
|
|
|
if (empty($_GET['domain'])){
|
|
exec (VESTA_CMD."v-list-mail-domains $user json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_mail.html');
|
|
} else {
|
|
exec (VESTA_CMD."v-list-mail-accounts '".$user."' '".$_GET['domain']."' 'json'", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_mail_acc.html');
|
|
}
|
|
} else {
|
|
if (empty($_GET['domain'])){
|
|
exec (VESTA_CMD."v-list-mail-domains $user json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_mail.html');
|
|
} else {
|
|
exec (VESTA_CMD."v-list-mail-accounts '".$user."' '".$_GET['domain']."' 'json'", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_mail_acc.html');
|
|
}
|
|
}
|
|
|
|
// Footer
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|