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 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2008 by Roland Haeder *
21 * Copyright (c) 2009, 2010 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
45 /************************************************************************
46 * PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM! *
47 ************************************************************************/
50 setConfigEntry('SITE_KEY', '');
53 setConfigEntry('DATE_KEY', generateDateTime(time(), '5'));
55 // CFG: DEFAULT-LANGUAGE
56 setConfigEntry('DEFAULT_LANG', 'de');
58 // CFG: NULLPASS-WARNING
59 setConfigEntry('WARN_NO_PASS', 'Y');
62 setConfigEntry('WRITE_FOOTER', 'Y');
65 setConfigEntry('OUTPUT_MODE', 'render');
68 setConfigEntry('MXCHANGE_INSTALLED', 'N');
71 setConfigEntry('ADMIN_REGISTERED', 'N');
74 setConfigEntry('_MYSQL_PREFIX', 'mxchange');
77 setConfigEntry('_TABLE_TYPE', 'MyISAM');
80 setConfigEntry('_DB_TYPE', 'mysql3');
82 // CFG: BACKLINK (Enable backlink to mxchange.org in footer? rel=external is set!)
83 setConfigEntry('ENABLE_BACKLINK', 'Y');
85 // CFG: DEBUG-MODE (if enabled all mails will be *displayed* and *not* send!)
86 setConfigEntry('DEBUG_MODE', 'Y');
88 // CFG: DEBUG-TEMPLATE-CACHE
89 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
91 // CFG: DEBUG-SQL (Logs all queries to inc/cache/mysql.log)
92 //setConfigEntry('DEBUG_SQL', 'Y');
94 // CFG: DEBUG-RESET (comment in to test daily reset, comment out to not test)
95 //setConfigEntry('DEBUG_RESET', 'Y');
97 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
98 //setConfigEntry('DEBUG_WEEKLY', 'Y');
100 // CFG: DEBUG-MONTHLY (comment in to test monthly reset, comment out to not test)
101 //setConfigEntry('DEBUG_MONTHLY', 'Y');
103 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
104 //setConfigEntry('DEBUG_REGEX', 'Y');
106 // Your MySQL data (we don't like M$ SQL ;-) )
107 $GLOBALS['mysql'] = array(
109 'host' => 'localhost',
114 // CFG: MYSQL-PASSWORD
115 'password' => 'pass',
118 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
119 // CFG: SMTP-HOSTNAME
120 setConfigEntry('SMTP_HOSTNAME', '');
122 setConfigEntry('SMTP_USER' , '');
123 // CFG: SMTP-PASSWORD
124 setConfigEntry('SMTP_PASSWORD', '');
126 // @TODO Rewrite the following three constants, somehow...
128 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
131 setConfigEntry('SLOGAN', 'Your cool slogan here');
134 setConfigEntry('WEBMASTER', 'you@some-hoster.tld.invalid');