Skip to content
mail_transport_edit.php 6.04 KiB
Newer Older
<?php
/*
tbrehm's avatar
tbrehm committed
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


/******************************************
* Begin Form configuration
******************************************/

$tform_def_file = "form/mail_transport.tform.php";

/******************************************
* End Form configuration
******************************************/

require_once '../../lib/config.inc.php';
require_once '../../lib/app.inc.php';
//* Check permissions for module
$app->auth->check_module_permissions('mail');
// Loading classes
$app->uses('tpl,tform,tform_actions');
tbrehm's avatar
tbrehm committed
$app->load('tform_actions');

class page_action extends tform_actions {
tbrehm's avatar
tbrehm committed
	function onShowNew() {
		global $app, $conf;
tbrehm's avatar
tbrehm committed
		// we will check only users, not admins
		if($_SESSION["s"]["user"]["typ"] == 'user') {
			if(!$app->tform->checkClientLimit('limit_mailrouting')) {
				$app->error($app->tform->wordbook["limit_mailrouting_txt"]);
			}
			if(!$app->tform->checkResellerLimit('limit_mailrouting')) {
				$app->error('Reseller: '.$app->tform->wordbook["limit_mailrouting_txt"]);
tbrehm's avatar
tbrehm committed
		parent::onShowNew();
	}
tbrehm's avatar
tbrehm committed
	function onShowEnd() {
		global $app, $conf;

		$tmp_parts = explode(":", $this->dataRecord["transport"]);
		if(!empty($this->id) && !stristr($this->dataRecord["transport"], ':')) {
			$rec["type"] = 'custom';
tbrehm's avatar
tbrehm committed
		} else {
			if(empty($this->id) && empty($tmp_parts[0])) {
				$rec["type"] = 'smtp';
			} else {
				$rec["type"] = $tmp_parts[0];
			}
tbrehm's avatar
tbrehm committed
		}
			$dest = @$tmp_parts[1].':'.@$tmp_parts[2];
		} elseif(!empty($tmp_parts[1])) {
			$dest = $tmp_parts[1];
		} else {
			$dest = $this->dataRecord["transport"];
		if(@substr($dest, 0, 1) == '[') {
tbrehm's avatar
tbrehm committed
			$rec["mx"] = 'checked="CHECKED"';
			$rec["destination"] = @str_replace(']', '', @str_replace('[', '', $dest));
tbrehm's avatar
tbrehm committed
		} else {
			$rec["mx"] = '';
			$rec["destination"] = @$dest;
tbrehm's avatar
tbrehm committed
		}

		$types = array('smtp' => 'smtp', 'uucp' => 'uucp', 'slow' => 'slow', 'error' => 'error', 'custom' => 'custom', '' => 'null');
tbrehm's avatar
tbrehm committed
		$type_select = '';
		if(is_array($types)) {
			foreach( $types as $key => $val) {
				$selected = ($key == $rec["type"])?'SELECTED':'';
				$type_select .= "<option value='$key' $selected>$val</option>\r\n";
			}
		}
		$rec["type"] = $type_select;
		$app->tpl->setVar($rec);
		unset($type);
		unset($types);
tbrehm's avatar
tbrehm committed
		parent::onShowEnd();
	}

	function onBeforeUpdate() {
		global $app, $conf;

		//* Check if the server has been changed
		// We do this only for the admin or reseller users, as normal clients can not change the server ID anyway
		if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) {
			$rec = $app->db->queryOneRecord("SELECT server_id from mail_transport WHERE transport_id = ".$this->id);
			if($rec['server_id'] != $this->dataRecord["server_id"]) {
				//* Add a error message and switch back to old server
				$app->tform->errorMessage .= $app->lng('The Server can not be changed.');
				$this->dataRecord["server_id"] = $rec['server_id'];
			}
			unset($rec);
		}
	}

tbrehm's avatar
tbrehm committed
	function onSubmit() {
		global $app, $conf;
tbrehm's avatar
tbrehm committed
		// Check the client limits, if user is not the admin
		if($_SESSION["s"]["user"]["typ"] != 'admin') { // if user is not admin
			// Get the limits of the client
Till Brehm's avatar
Till Brehm committed
			$client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]);
tbrehm's avatar
tbrehm committed
			$client = $app->db->queryOneRecord("SELECT limit_mailrouting FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id");

tbrehm's avatar
tbrehm committed
			// Check if the user may add another transport.
tbrehm's avatar
tbrehm committed
			if($this->id == 0 && $client["limit_mailrouting"] >= 0) {
				$tmp = $app->db->queryOneRecord("SELECT count(transport_id) as number FROM mail_transport WHERE sys_groupid = $client_group_id");
				if($tmp["number"] >= $client["limit_mailrouting"]) {
					$app->tform->errorMessage .= $app->tform->wordbook["limit_mailrouting_txt"]."<br>";
				}
				unset($tmp);
			}
		} // end if user is not admin
tbrehm's avatar
tbrehm committed
		//* Compose transport field
		if($this->dataRecord["mx"] == 'y') {
			if(stristr($this->dataRecord["destination"], ':')) {
				$tmp_parts = explode(":", $this->dataRecord["destination"]);
				$transport = '['.$tmp_parts[0].']:'.$tmp_parts[1];
			} else {
				$transport = '['.$this->dataRecord["destination"].']';
			}
tbrehm's avatar
tbrehm committed
		} else {
			$transport = $this->dataRecord["destination"];
		}
		if($this->dataRecord["type"] == 'custom') {
			$this->dataRecord["transport"] = $transport;
		} else {
			$this->dataRecord["transport"] = $this->dataRecord["type"].':'.$transport;
		}
tbrehm's avatar
tbrehm committed
		unset($this->dataRecord["type"]);
		unset($this->dataRecord["mx"]);
		unset($this->dataRecord["destination"]);
tbrehm's avatar
tbrehm committed
		parent::onSubmit();
	}
tbrehm's avatar
tbrehm committed
$page = new page_action;
$page->onLoad();