]> git.mxchange.org Git - mailer.git/blobdiff - inc/config.php
Yet another fix...
[mailer.git] / inc / config.php
index 97a49d396e1bb6536232dba013bb55732ebc1a58..897b03aa862db2b203a9effa43cae9dddc7173b3 100644 (file)
@@ -34,7 +34,7 @@
 // Some security stuff...
 if (!defined('__SECURITY'))
 {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
        require($INC);
 }
 
@@ -113,13 +113,6 @@ define('DEBUG_MODE', false);
 // When we are not installing
 if (!defined('mxchange_installing')) define('mxchange_installing', false);
 
-// Language stuff (default is german)
-require_once(PATH."inc/language.php");
-
-// We need general functions and database stuff here
-require_once(PATH."inc/functions.php");
-require_once(PATH."inc/mysql-manager.php");
-
 // Your MySQL data (we don't like M$ SQL ;-) )
 $MySQL = array(
        // CFG: MYSQL-HOST
@@ -143,8 +136,11 @@ define('LEAD_CODE_ENABLED', true);
 define('LEAD_EXPIRY_TIME' , (30*24*60*60)); // == 30 days
 
 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
+// CFG: SMTP-HOSTNAME
 define('SMTP_HOSTNAME', "");
+// CFG: SMTP-USER
 define('SMTP_USER'    , "");
+// CFG: SMTP-PASSWORD
 define('SMTP_PASSWORD', "");
 
 // SSL cookies? (enable only if you have SSL, URLs will begin with https://)