99 lines
2.9 KiB
PHP
99 lines
2.9 KiB
PHP
<?php
|
|
//
|
|
// OpenSMTPD Admin
|
|
// by Mischa Peters <mischa at high5 dot nl>
|
|
// Copyright (c) 2022 High5!
|
|
// License Info: LICENSE.TXT
|
|
//
|
|
// File: edit-alias.php
|
|
//
|
|
// Template File: edit-alias.tpl
|
|
//
|
|
// Template Variables:
|
|
//
|
|
// message
|
|
// goto
|
|
//
|
|
// POST / GET Variables:
|
|
//
|
|
// address
|
|
// domain
|
|
// goto
|
|
//
|
|
require_once './functions.inc.php';
|
|
include './languages/' . check_language() . '.lang';
|
|
|
|
$SESSID_USERNAME = check_session();
|
|
$ROLE = check_role($SESSID_USERNAME);
|
|
|
|
if ($ROLE == ADMIN_ROLE) {
|
|
$list_domains = list_domains();
|
|
$list_admins = list_admins();
|
|
} else {
|
|
$list_domains = list_domains($SESSID_USERNAME);
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
|
$address = filter_input(INPUT_GET, 'address', FILTER_VALIDATE_EMAIL);
|
|
$domain = filter_input(INPUT_GET, 'domain', FILTER_VALIDATE_DOMAIN);
|
|
$domain_key = array_search($domain, array_column($list_domains, 'domain'));
|
|
|
|
if (in_array($domain, array_column($list_domains, 'domain'))) {
|
|
try {
|
|
$dbh = pdo_connect();
|
|
$sth = $dbh->prepare("SELECT goto FROM alias WHERE address=? AND domain=?");
|
|
$sth->bindParam(1, $address, PDO::PARAM_STR);
|
|
$sth->bindParam(2, $domain, PDO::PARAM_STR);
|
|
$sth->execute();
|
|
$goto = $sth->fetch(PDO::FETCH_COLUMN);
|
|
$goto = explode(',', $goto);
|
|
} catch(PDOException $e) {
|
|
$message = $LANG['Edit_alias_address_error'];
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
|
$address = strtolower(filter_input(INPUT_GET, 'address', FILTER_VALIDATE_EMAIL));
|
|
$domain = strtolower(filter_input(INPUT_GET, 'domain', FILTER_VALIDATE_DOMAIN));
|
|
$goto = strtolower(filter_input(INPUT_POST, 'goto', FILTER_DEFAULT));
|
|
$domain_key = array_search($domain, array_column($list_domains, 'domain'));
|
|
|
|
if (empty($goto)) {
|
|
$goto = array();
|
|
$message = $LANG['Edit_alias_goto_text_error1'];
|
|
} else {
|
|
$goto = preg_replace('/\\\r\\\n/', ',', $goto);
|
|
$goto = preg_replace('/\r\n/', ',', $goto);
|
|
$goto = preg_replace('/[\s]+/i', '', $goto);
|
|
$goto = preg_replace('/\,*$/', '', $goto);
|
|
$validate_goto = explode(',', $goto);
|
|
foreach ($validate_goto as $row) {
|
|
if (!filter_var($row, FILTER_VALIDATE_EMAIL)) {
|
|
$goto = explode(',', $goto);
|
|
$message = $LANG['Edit_alias_goto_text_error2'] . "$row</div>";
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($message) && in_array($domain, array_column($list_domains, 'domain'))) {
|
|
try {
|
|
$dbh = pdo_connect();
|
|
$sth = $dbh->prepare("UPDATE alias SET goto=?,modified=NOW() WHERE address=? AND domain=?");
|
|
$sth->bindParam(1, $goto, PDO::PARAM_STR);
|
|
$sth->bindParam(2, $address, PDO::PARAM_STR);
|
|
$sth->bindParam(3, $domain, PDO::PARAM_STR);
|
|
$sth->execute();
|
|
logging($SESSID_USERNAME, $domain, $LANG['Logging_alias_edit'], "$address -> $goto");
|
|
header("Location: list-virtual.php?domain=$domain");
|
|
} catch(PDOException $e) {
|
|
$message = $LANG['Edit_alias_result_error'];
|
|
}
|
|
}
|
|
}
|
|
include './templates/header.tpl';
|
|
include './templates/menu.tpl';
|
|
include './templates/edit-alias.tpl';
|
|
include './templates/footer.tpl';
|
|
?>
|