Some fixes:
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 /************************************************************************
44  *      PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM!        *
45  ************************************************************************/
46
47 // CFG: SITE-KEY
48 setConfigEntry('SITE_KEY', '');
49
50 // CFG: DATE-KEY
51 setConfigEntry('DATE_KEY', generateDateTime(time(), '5'));
52
53 // CFG: DEFAULT-LANGUAGE
54 setConfigEntry('DEFAULT_LANG', 'de');
55
56 // CFG: NULLPASS-WARNING
57 setConfigEntry('WARN_NO_PASS', 'Y');
58
59 // CFG: WRITE-FOOTER
60 setConfigEntry('WRITE_FOOTER', 'Y');
61
62 // CFG: OUTPUT-MODE
63 setConfigEntry('OUTPUT_MODE', 'render');
64
65 // CFG: INSTALLED
66 setConfigEntry('MAILER_INSTALLED', 'N');
67
68 // CFG: ADMIN-SETUP
69 setConfigEntry('ADMIN_REGISTERED', 'N');
70
71 // CFG: MYSQL-PREFIX
72 setConfigEntry('_MYSQL_PREFIX', 'mxchange');
73
74 // CFG: TABLE-TYPE
75 setConfigEntry('_TABLE_TYPE', 'MyISAM');
76
77 // CFG: DATABASE-TYPE
78 setConfigEntry('_DB_TYPE', 'mysql3');
79
80 // CFG: BACKLINK (Enable backlink to mxchange.org in footer? rel=external is set!)
81 setConfigEntry('ENABLE_BACKLINK', 'Y');
82
83 // CFG: DEBUG-MODE (if enabled all mails will be *displayed* and *not* send!)
84 setConfigEntry('DEBUG_MODE', 'N');
85
86 // CFG: DEBUG-TEMPLATE-CACHE
87 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
88
89 // CFG: DEBUG-SQL (Logs all queries to inc/cache/mysql.log)
90 //setConfigEntry('DEBUG_SQL', 'Y');
91
92 // CFG: DEBUG-HOURLY (comment in to test hourly reset, comment out to not test)
93 //setConfigEntry('DEBUG_HOURLY', 'Y');
94
95 // CFG: DEBUG-DAILY (comment in to test daily reset, comment out to not test)
96 //setConfigEntry('DEBUG_DAILY', 'Y');
97
98 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
99 //setConfigEntry('DEBUG_WEEKLY', 'Y');
100
101 // CFG: DEBUG-MONTHLY (comment in to test monthly reset, comment out to not test)
102 //setConfigEntry('DEBUG_MONTHLY', 'Y');
103
104 // CFG: DEBUG-YEARLY (comment in to test yearly reset, comment out to not test)
105 //setConfigEntry('DEBUG_YEARLY', 'Y');
106
107 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
108 //setConfigEntry('DEBUG_REGEX', 'Y');
109
110 // CFG: DEBUG-BUILD-MAILS
111 //setConfigEntry('DEBUG_BUILD_MAILS', 'Y');
112
113 // CFG: ALLOW-TESTER-ACCOUNTS (comment in to allow tester accounts being re-included)
114 //setConfigEntry('ALLOW_TESTER_ACCOUNTS', 'Y');
115
116 // Your MySQL data (we don't like M$ SQL ;-) )
117 $GLOBALS['mysql'] = array(
118         // CFG: MYSQL-HOST
119         'host'     => 'localhost',
120         // CFG: MYSQL-DBASE
121         'dbase'    => 'db',
122         // CFG: MYSQL-LOGIN
123         'login'    => 'user',
124         // CFG: MYSQL-PASSWORD
125         'password' => 'pass',
126 );
127
128 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
129 // CFG: SMTP-HOSTNAME
130 setConfigEntry('SMTP_HOSTNAME', '');
131
132 // CFG: SMTP-USER
133 setConfigEntry('SMTP_USER'    , '');
134
135 // CFG: SMTP-PASSWORD
136 setConfigEntry('SMTP_PASSWORD', '');
137
138 // CFG: MAIN-TITLE
139 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
140
141 // CFG: SLOGAN
142 setConfigEntry('SLOGAN', 'Your cool slogan here');
143
144 // CFG: WEBMASTER
145 setConfigEntry('WEBMASTER', 'you@some-hoster.tld.invalid');
146
147 // [EOF]
148 ?>