You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.9 KiB
43 lines
1.9 KiB
<?php
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
require_once("include/database/PearDatabase.php");
|
|
|
|
global $current_user;
|
|
$displayname=$_REQUEST['displayname'];
|
|
$user_id = $current_user->id;
|
|
$email=$_REQUEST['email'];
|
|
$account_name=$_REQUEST['account_name'];
|
|
$mailprotocol=$_REQUEST['mailprotocol'];
|
|
$server_username = $_REQUEST['server_username'];
|
|
$server_password = $_REQUEST['server_password'];
|
|
$mail_servername = $_REQUEST['mail_servername'];
|
|
|
|
if(isset($_REQUEST['record']) && $_REQUEST['record']!='')
|
|
{
|
|
$id=$_REQUEST['record'];
|
|
}
|
|
#$sql="select * from systems where server_type = '".$server_type."'";
|
|
#$id=$adb->query_result($adb->query($sql),0,"id");
|
|
|
|
if(isset($_REQUEST['edit']) && $_REQUEST['edit'] && $_REQUEST['record']!='')
|
|
{
|
|
$sql="update mail_accounts set display_name = '".$displayname."', mail_id = '".$email."', account_name = '".$account_name."', mail_protocol = '".$mailprotocol."', mail_username = '".$server_username."', mail_password='".$server_password."', mail_servername='".$mail_servername."' where account_id = ".$id;
|
|
}
|
|
else
|
|
{
|
|
$account_id = $adb->getUniqueID("mail_accounts");
|
|
$sql="insert into mail_accounts values(" .$account_id .",'".$current_user->id."','".$displayname."','".$email."','".$account_name."','".$mailprotocol."','".$server_username."','".$server_password."','".$mail_servername."',1,0)";
|
|
}
|
|
|
|
$adb->query($sql);
|
|
|
|
header("Location:index.php?module=Settings&action=ListMailAccount");
|
|
?>
|
|
|