mail pages completed

This commit is contained in:
Serghey Rodin 2012-06-19 18:23:14 +03:00
commit 5d0c09e363
44 changed files with 253 additions and 955 deletions

View file

@ -0,0 +1,31 @@
<?php
// Init
//error_reporting(NULL);
ob_start();
session_start();
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
if ($_SESSION['user'] == 'admin') {
// Mail domain
if ((!empty($_GET['domain'])) && (empty($_GET['account']))) {
$v_username = escapeshellarg($user);
$v_domain = escapeshellarg($_GET['domain']);
exec (VESTA_CMD."v_unsuspend_mail_domain ".$v_username." ".$v_domain, $output, $return_var);
unset($output);
header("Location: /list/mail/");
exit;
}
// Mail account
if ((!empty($_GET['domain'])) && (!empty($_GET['account']))) {
$v_username = escapeshellarg($user);
$v_domain = escapeshellarg($_GET['domain']);
$v_account = escapeshellarg($_GET['account']);
exec (VESTA_CMD."v_unsuspend_mail_account ".$v_username." ".$v_domain." ".$v_account, $output, $return_var);
unset($output);
header("Location: /list/mail/?domain=".$_GET['domain']);
exit;
}
}
header("Location: /list/mail/");