2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 04/03/2009 *
4 * =================== Last change: 04/03/2009 *
6 * -------------------------------------------------------------------- *
7 * File : config-local.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Local configuration *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Lokale Konfiguration *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2008 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 /************************************************************************
44 * PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM! *
45 ************************************************************************/
48 setConfigEntry('SITE_KEY', '');
51 setConfigEntry('DATE_KEY', generateDateTime(time(), '5'));
53 // CFG: DEFAULT-LANGUAGE
54 setConfigEntry('DEFAULT_LANG', 'de');
56 // CFG: NULLPASS-WARNING
57 setConfigEntry('WARN_NO_PASS', 'Y');
60 setConfigEntry('WRITE_FOOTER', 'Y');
63 setConfigEntry('OUTPUT_MODE', 'render');
66 setConfigEntry('MXCHANGE_INSTALLED', 'N');
69 setConfigEntry('ADMIN_REGISTERED', 'N');
72 setConfigEntry('_MYSQL_PREFIX', 'mxchange');
75 setConfigEntry('_TABLE_TYPE', 'MyISAM');
78 setConfigEntry('_DB_TYPE', 'mysql3');
80 // CFG: BACKLINK (Enable backlink to mxchange.org in footer? rel=external is set!)
81 setConfigEntry('ENABLE_BACKLINK', 'Y');
83 // CFG: DEBUG-MODE (if enabled all mails will be *displayed* and *not* send!)
84 setConfigEntry('DEBUG_MODE', 'Y');
86 // CFG: DEBUG-TEMPLATE-CACHE
87 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
89 // CFG: DEBUG-SQL (Logs all queries to inc/cache/mysql.log)
90 //setConfigEntry('DEBUG_SQL', 'Y');
92 // CFG: DEBUG-RESET (comment in to test daily reset, comment out to not test)
93 //setConfigEntry('DEBUG_RESET', 'Y');
95 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
96 //setConfigEntry('DEBUG_WEEKLY', 'Y');
98 // CFG: DEBUG-MONTHLY (comment in to test monthly reset, comment out to not test)
99 //setConfigEntry('DEBUG_MONTHLY', 'Y');
101 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
102 //setConfigEntry('DEBUG_REGEX', 'Y');
104 // Your MySQL data (we don't like M$ SQL ;-) )
105 $GLOBALS['mysql'] = array(
107 'host' => 'localhost',
112 // CFG: MYSQL-PASSWORD
113 'password' => 'pass',
116 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
117 // CFG: SMTP-HOSTNAME
118 setConfigEntry('SMTP_HOSTNAME', '');
120 setConfigEntry('SMTP_USER' , '');
121 // CFG: SMTP-PASSWORD
122 setConfigEntry('SMTP_PASSWORD', '');
124 // @TODO Rewrite the following three constants, somehow...
126 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
129 setConfigEntry('SLOGAN', 'Your cool slogan here');
132 setConfigEntry('WEBMASTER', 'you@some-hoster.tld.invalid');