From ac3b1f6f8c7d22096888e493c9036bca12f96685 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 06 Feb 2007 18:01:19 -0500
Subject: [PATCH] Changes in mail module.

---
 interface/lib/config.inc.php |   24 +++++++++++++++++++-----
 1 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/interface/lib/config.inc.php b/interface/lib/config.inc.php
index 6adc177..ff15b46 100644
--- a/interface/lib/config.inc.php
+++ b/interface/lib/config.inc.php
@@ -32,8 +32,9 @@
 $conf["app_title"] = "ISPConfig";
 $conf["app_version"] = "3.0.0";
 
-//$conf["rootpath"]			= "F:\\server\\www\\ispconfig3\\interface";
-$conf["rootpath"]			= "D:\\www\\ispconfig3\\interface";
+
+$conf["rootpath"]			= "D:\\server\\www\\ispconfig3\\interface";
+//$conf["rootpath"]			= "D:\\www\\ispconfig3\\interface";
 //$conf["rootpath"]			= "/home/www/ispconfig3/web/cms";
 
 $conf["fs_div"]				= "\\"; // File system divider, \\ on windows and / on linux and unix
@@ -41,9 +42,22 @@
 $conf["temppath"]			= $conf["rootpath"].$conf["fs_div"]."temp";
 
 
+define("DIR_TRENNER","\\");
+define("SERVER_ROOT","D:\\server\\www\\ispconfig3\\interface");
+define("INCLUDE_ROOT",SERVER_ROOT.DIR_TRENNER."lib");
+define("CLASSES_ROOT",INCLUDE_ROOT.DIR_TRENNER."classes");
+
 /*
         Database Settings
 */
+
+define("DB_TYPE","mysql");
+define("DB_HOST","localhost");
+define("DB_DATABASE","ispconfig3");
+define("DB_USER","root");
+define("DB_PASSWORD","");
+
+
 
 
 $conf["db_type"]			= 'mysql';
@@ -65,9 +79,9 @@
         Themes
 */
 
-$conf["theme"]					= 'default';
+$conf["theme"]									= 'default';
 $conf["html_content_encoding"]	= 'text/html; charset=iso-8859-1';
-$conf["logo"] 					= 'themes/default/images/mydnsconfig_logo.gif';
+$conf["logo"] 									= 'themes/default/images/mydnsconfig_logo.gif';
 
 /*
         Default Language
@@ -80,7 +94,7 @@
         Auto Load Modules
 */
 
-$conf["start_db"]		= true;
+$conf["start_db"]				= true;
 $conf["start_session"]	= true;
 
 /*

--
Gitblit v1.9.1