opensmtpdadmin/delete.php

90 lines
2.8 KiB
PHP
Raw Normal View History

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
//
// File: delete.php
//
// Template File: message.tpl
//
// Template Variables:
//
2022-09-04 14:49:44 +02:00
// message
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
// table
// where
// delete
// domain
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-04 14:49:44 +02:00
$list_domains = list_domains($SESSID_USERNAME);
$admin = $SESSID_USERNAME ?? ADMIN_EMAIL;
2022-08-18 14:01:52 +02:00
if ($_SERVER['REQUEST_METHOD'] == "GET") {
2022-09-04 16:04:56 +02:00
$table = filter_input(INPUT_GET, 'table', FILTER_DEFAULT);
2022-09-04 14:49:44 +02:00
$delete = filter_input(INPUT_GET, 'delete', FILTER_DEFAULT);
$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
2022-09-04 16:04:56 +02:00
if ($domain_exist && ($table == 'alias' || $table == 'mailbox')) {
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("DELETE FROM alias WHERE address=? AND domain=?");
$sth->bindParam(1, $delete, PDO::PARAM_STR);
$sth->bindParam(2, $domain, PDO::PARAM_STR);
$sth->execute();
if ($sth->rowCount() != 1) {
throw new RuntimeException('alias');
}
logging($admin, $domain, $LANG['Logging_alias_delete'], $delete);
2022-08-18 14:01:52 +02:00
2022-09-04 14:49:44 +02:00
header("Location: list-virtual.php?domain=$domain");
} catch (RuntimeException $e) {
$message = $LANG['Delete_delete_error'] . "<b>$delete</b> (" . $e->getMessage() . ")!</span>";
} catch (PDOException $e) {
$message = $LANG['Delete_delete_error'] . "<b>$delete</b> (alias)!</span> " . $e-getMessage();
2022-08-18 14:01:52 +02:00
}
2022-09-04 14:49:44 +02:00
try {
2022-09-04 20:50:21 +02:00
$dbh = pdo_connect();
2022-09-04 16:04:56 +02:00
$sth = $dbh->prepare("DELETE FROM mailbox WHERE username=? AND domain=?");
$sth->bindParam(1, $delete, PDO::PARAM_STR);
$sth->bindParam(2, $domain, PDO::PARAM_STR);
2022-09-04 14:49:44 +02:00
$sth = $dbh->prepare("DELETE FROM mailbox WHERE username=? AND domain=?");
$sth->bindParam(1, $delete, PDO::PARAM_STR);
$sth->bindParam(2, $domain, PDO::PARAM_STR);
$sth->execute();
if ($sth->rowCount() != 1) {
throw new RuntimeException('mailbox');
2022-08-18 14:01:52 +02:00
}
logging($admin, $domain, $LANG['Logging_mailbox_delete'], $delete);
2022-08-18 14:01:52 +02:00
2022-09-04 14:49:44 +02:00
$sth = $dbh->prepare("DELETE FROM vacation WHERE email=? AND domain=?");
$sth->bindParam(1, $delete, PDO::PARAM_STR);
$sth->bindParam(2, $domain, PDO::PARAM_STR);
$sth->execute();
2022-08-18 14:01:52 +02:00
2022-09-04 14:49:44 +02:00
header("Location: list-virtual.php?domain=$domain");
} catch (RuntimeException $e) {
$message = $LANG['Delete_delete_error'] . "<b>$delete</b> (" . $e->getMessage() . ")!</span>";
} catch (PDOException $e) {
$message = $LANG['Delete_delete_error'] . "<b>$delete</b> (mailbox)!</span>";
}
}
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/message.tpl';
include './templates/footer.tpl';
2022-08-18 14:01:52 +02:00
?>