The yearly copyright-update commit. 2009, 2010 are now copyrighted on the developer...
[mailer.git] / inc / config-local.php.dist
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/03/2009 *
4  * ===================                          Last change: 04/03/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : config-local.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Local configuration                              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Lokale Konfiguration                             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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                  *
23  *                                                                      *
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.                                  *
28  *                                                                      *
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.                         *
33  *                                                                      *
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,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 /************************************************************************
46  *      PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM!        *
47  ************************************************************************/
48
49 // CFG: SITE-KEY
50 setConfigEntry('SITE_KEY', '');
51
52 // CFG: DATE-KEY
53 setConfigEntry('DATE_KEY', date('d-m-Y (l-F-T)', time()));
54
55 // CFG: DEFAULT-LANGUAGE
56 setConfigEntry('DEFAULT_LANG', 'de');
57
58 // CFG: NULLPASS-WARNING
59 setConfigEntry('WARN_NO_PASS', 'Y');
60
61 // CFG: WRITE-FOOTER
62 setConfigEntry('WRITE_FOOTER', 'Y');
63
64 // CFG: OUTPUT-MODE
65 setConfigEntry('OUTPUT_MODE', 'render');
66
67 // CFG: INSTALLED
68 setConfigEntry('MXCHANGE_INSTALLED', 'N');
69
70 // CFG: ADMIN-SETUP
71 setConfigEntry('ADMIN_REGISTERED', 'N');
72
73 // CFG: MYSQL-PREFIX
74 setConfigEntry('_MYSQL_PREFIX', 'mxchange');
75
76 // CFG: TABLE-TYPE
77 setConfigEntry('_TABLE_TYPE', 'MyISAM');
78
79 // CFG: DATABASE-TYPE
80 setConfigEntry('_DB_TYPE', 'mysql3');
81
82 // CFG: BACKLINK (Enable backlink to mxchange.org in footer? rel=external is set!)
83 setConfigEntry('ENABLE_BACKLINK', 'Y');
84
85 // CFG: DEBUG-MODE (if enabled all mails will be *displayed* and *not* send!)
86 setConfigEntry('DEBUG_MODE', 'Y');
87
88 // CFG: DEBUG-TEMPLATE-CACHE
89 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
90
91 // CFG: DEBUG-SQL (Logs all queries to inc/cache/mysql.log)
92 //setConfigEntry('DEBUG_SQL', 'Y');
93
94 // CFG: DEBUG-RESET (comment in to test daily reset, comment out to not test)
95 //setConfigEntry('DEBUG_RESET', 'Y');
96
97 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
98 //setConfigEntry('DEBUG_WEEKLY', 'Y');
99
100 // CFG: DEBUG-MONTHLY (comment in to test monthly reset, comment out to not test)
101 //setConfigEntry('DEBUG_MONTHLY', 'Y');
102
103 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
104 //setConfigEntry('DEBUG_REGEX', 'Y');
105
106 // Your MySQL data (we don't like M$ SQL ;-) )
107 $GLOBALS['mysql'] = array(
108         // CFG: MYSQL-HOST
109         'host'     => 'localhost',
110         // CFG: MYSQL-DBASE
111         'dbase'    => 'db',
112         // CFG: MYSQL-LOGIN
113         'login'    => 'user',
114         // CFG: MYSQL-PASSWORD
115         'password' => 'pass',
116 );
117
118 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
119 // CFG: SMTP-HOSTNAME
120 setConfigEntry('SMTP_HOSTNAME', '');
121 // CFG: SMTP-USER
122 setConfigEntry('SMTP_USER'    , '');
123 // CFG: SMTP-PASSWORD
124 setConfigEntry('SMTP_PASSWORD', '');
125
126 // @TODO Rewrite the following three constants, somehow...
127 // CFG: MAIN-TITLE
128 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
129
130 // CFG: SLOGAN
131 setConfigEntry('SLOGAN', 'Your cool slogan here');
132
133 // CFG: WEBMASTER
134 setConfigEntry('WEBMASTER', 'you@some-hoster.tld.invalid');
135
136 // [EOF]
137 ?>