2022-08-18 14:01:52 +02:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// OpenSMTPD Admin
|
|
|
|
// by Mischa Peters <mischa at high5 dot nl>
|
|
|
|
// Copyright (c) 2022 High5!
|
|
|
|
// License Info: LICENSE.TXT
|
|
|
|
//
|
2022-09-04 14:49:44 +02:00
|
|
|
// File: add-alias.php
|
2022-08-18 14:01:52 +02:00
|
|
|
//
|
2022-09-04 14:49:44 +02:00
|
|
|
// Template File: add-alias.tpl
|
2022-08-18 14:01:52 +02:00
|
|
|
//
|
|
|
|
// Template Variables:
|
|
|
|
//
|
2022-09-04 14:49:44 +02:00
|
|
|
// message
|
|
|
|
// address
|
|
|
|
// domain
|
|
|
|
// goto
|
2022-08-18 14:01:52 +02:00
|
|
|
//
|
2022-09-05 20:29:41 +02:00
|
|
|
// POST / GET Variables:
|
2022-08-18 14:01:52 +02:00
|
|
|
//
|
2022-09-04 14:49:44 +02:00
|
|
|
// address
|
|
|
|
// domain
|
|
|
|
// goto
|
2022-08-18 14:01:52 +02:00
|
|
|
//
|
2022-09-04 14:49:44 +02:00
|
|
|
require_once './functions.inc.php';
|
|
|
|
include './languages/' . check_language() . '.lang';
|
2022-08-18 14:01:52 +02:00
|
|
|
|
|
|
|
$SESSID_USERNAME = check_session();
|
2022-09-05 22:24:35 +02:00
|
|
|
$ROLE = check_role();
|
2022-08-18 14:01:52 +02:00
|
|
|
|
2022-09-05 22:24:35 +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-08-18 14:01:52 +02:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
2022-09-04 14:49:44 +02:00
|
|
|
$domain = filter_input(INPUT_GET, 'domain', FILTER_VALIDATE_DOMAIN);
|
|
|
|
$domain_key = array_search($domain, array_column($list_domains, 'domain'));
|
2022-09-04 16:04:56 +02:00
|
|
|
$domain_exist = in_array($domain, array_column($list_domains, 'domain'));
|
2022-08-18 14:01:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
2022-09-04 14:49:44 +02:00
|
|
|
$address = strtolower(filter_input(INPUT_POST, 'address', FILTER_DEFAULT));
|
|
|
|
$domain = filter_input(INPUT_POST, 'domain', FILTER_VALIDATE_DOMAIN);
|
|
|
|
$goto = strtolower(filter_input(INPUT_POST, 'goto', FILTER_DEFAULT));
|
|
|
|
$domain_key = array_search($domain, array_column($list_domains, 'domain'));
|
2022-09-04 16:04:56 +02:00
|
|
|
$domain_exist = in_array($domain, array_column($list_domains, 'domain'));
|
2022-09-04 14:49:44 +02:00
|
|
|
$from = filter_var($address . '@' . $domain, FILTER_VALIDATE_EMAIL);
|
2022-08-18 14:01:52 +02:00
|
|
|
|
2022-09-04 14:49:44 +02:00
|
|
|
if (!str_contains($goto, '@')) {
|
|
|
|
$goto = $goto . "@" . $domain;
|
2022-08-18 14:01:52 +02:00
|
|
|
}
|
2022-09-04 14:49:44 +02:00
|
|
|
$goto = filter_var($goto, FILTER_VALIDATE_EMAIL);
|
2022-08-18 14:01:52 +02:00
|
|
|
|
2022-09-04 14:49:44 +02:00
|
|
|
if ($list_domains[$domain_key]['aliases'] != 0 && $list_domains[$domain_key]['alias_count'] >= $list_domains[$domain_key]['aliases']) {
|
2022-09-04 16:31:50 +02:00
|
|
|
$message = $LANG['Add_alias_address_text_error2'];
|
2022-08-18 14:01:52 +02:00
|
|
|
}
|
|
|
|
|
2022-09-04 14:49:44 +02:00
|
|
|
if (empty($address) || empty($goto)) {
|
2022-09-04 16:31:50 +02:00
|
|
|
$message = $LANG['Add_alias_address_text_error1'];
|
2022-08-18 14:01:52 +02:00
|
|
|
}
|
|
|
|
|
2022-09-04 16:04:56 +02:00
|
|
|
if ($domain_exist && empty($message)) {
|
2022-09-04 14:49:44 +02:00
|
|
|
try {
|
2022-09-04 20:50:21 +02:00
|
|
|
$dbh = pdo_connect();
|
2022-09-04 14:49:44 +02:00
|
|
|
$sth = $dbh->prepare("INSERT INTO alias (address,goto,domain,created,modified) VALUES (?,?,?,NOW(),NOW())");
|
|
|
|
$sth->bindParam(1, $from, PDO::PARAM_STR);
|
|
|
|
$sth->bindParam(2, $goto, PDO::PARAM_STR);
|
|
|
|
$sth->bindParam(3, $domain, PDO::PARAM_STR);
|
|
|
|
$sth->execute();
|
2022-09-05 22:24:35 +02:00
|
|
|
logging($SESSID_USERNAME, $domain, $LANG['Logging_alias_add'], "$from -> $goto");
|
2022-09-04 16:31:50 +02:00
|
|
|
$message = $LANG['Add_alias_result_succes'] . "<br />($from -> $goto)</br />";
|
2022-09-04 14:49:44 +02:00
|
|
|
$address = '';
|
|
|
|
$goto = '';
|
|
|
|
} catch(PDOException $e) {
|
2022-09-04 16:31:50 +02:00
|
|
|
$message = $LANG['Add_alias_result_error'] . "<br />($from -> $goto)<br />";
|
2022-08-18 14:01:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-04 14:49:44 +02:00
|
|
|
include './templates/header.tpl';
|
|
|
|
include './templates/menu.tpl';
|
|
|
|
include './templates/add-alias.tpl';
|
|
|
|
include './templates/footer.tpl';
|
2022-08-18 14:01:52 +02:00
|
|
|
?>
|