Current File : //etc/zpanel/panel/modules/distlists/code/postfix.php |
<?php
/**
* @copyright 2014-2015 Sentora Project (http://www.sentora.org/)
* Sentora is a GPL fork of the ZPanel Project whose original header follows:
*
* ZPanel - A Cross-Platform Open-Source Web Hosting Control panel.
*
* @package ZPanel
* @version $Id$
* @author Bobby Allen - ballen@bobbyallen.me
* @copyright (c) 2008-2014 ZPanel Group - http://www.zpanelcp.com/
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License v3
*
* This program (ZPanel) is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
$mailserver_db = ctrl_options::GetSystemOption('mailserver_db');
include('cnf/db.php');
$z_db_user = $user;
$z_db_pass = $pass;
try {
$mail_db = new db_driver("mysql:host=" . $host . ";dbname=" . $mailserver_db . "", $z_db_user, $z_db_pass);
} catch (PDOException $e) {
}
// Deleting Postfix Distubution List
if (!fs_director::CheckForEmptyValue(self::$delete)) {
//$result = $mail_db->query("SELECT address FROM alias WHERE address='" . $rowdl['dl_address_vc'] . "'")->Fetch();
$numrows = $mail_db->prepare("SELECT address FROM alias WHERE address=:dl_address_vc");
$numrows->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$numrows->execute();
$result = $numrows->fetch();
if ($result) {
$sql = "DELETE FROM alias WHERE address=:dl_address_vc";
$sql = $mail_db->prepare($sql);
$sql->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$sql->execute();
}
}
// Adding Postfix Distubution List
if (!fs_director::CheckForEmptyValue(self::$create)) {
//$result = $mail_db->query("SELECT address FROM alias WHERE address='" . $fulladdress . "'")->Fetch();
$numrows = $mail_db->prepare("SELECT address FROM alias WHERE address=:fulladdress");
$numrows->bindParam(':fulladdress', $fulladdress);
$numrows->execute();
$result = $numrows->fetch();
if (!$result) {
$sql = "INSERT INTO alias (address,
goto,
domain,
created,
modified,
active) VALUES (
:fulladdress,
'',
:inDomain,
NOW(),
NOW(),
'1')";
$sql = $mail_db->prepare($sql);
$sql->bindParam(':fulladdress', $fulladdress);
$sql->bindParam(':inDomain', $inDomain);
$sql->execute();
}
}
// Deleting Postfix Distubution List User
if (!fs_director::CheckForEmptyValue(self::$deleteuser)) {
//$result = $mail_db->query("SELECT * FROM alias WHERE address='" . $rowdl['dl_address_vc'] . "'")->Fetch();
$numrows = $mail_db->prepare("SELECT * FROM alias WHERE address=:dl_address_vc");
$numrows->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$numrows->execute();
$result = $numrows->fetch();
if ($result) {
//echo $rowdlu['du_address_vc'];
$newlist = str_replace("," . $rowdlu['du_address_vc'], "", $result['goto']);
$newlist = str_replace(",,", ",", $newlist);
$sql = "UPDATE alias SET goto=:newlist, modified=NOW() WHERE address=:dl_address_vc";
$sql = $mail_db->prepare($sql);
$sql->bindParam(':newlist', $newlist);
$sql->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$sql->execute();
}
}
// Adding Postfix Distubution List User
if (!fs_director::CheckForEmptyValue(self::$createuser)) {
//$result = $mail_db->query("SELECT * FROM alias WHERE address='" . $rowdl['dl_address_vc'] . "'")->Fetch();
$numrows = $mail_db->prepare("SELECT * FROM alias WHERE address=:dl_address_vc");
$numrows->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$numrows->execute();
$result = $numrows->fetch();
if ($result) {
$newlist = $result['goto'] . "," . $fulladdress;
$newlist = str_replace(",,", ",", $newlist);
$sql = "UPDATE alias SET goto=:newlist, modified=NOW() WHERE address=:dl_address_vc";
$sql = $mail_db->prepare($sql);
$sql->bindParam(':newlist', $newlist);
$sql->bindParam(':dl_address_vc', $rowdl['dl_address_vc']);
$sql->execute();
}
}
?>