Continued a bit:
[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  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } // END - if
37
38 /************************************************************************
39  *      PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM!        *
40  ************************************************************************/
41
42 // CFG: SITE-KEY
43 setConfigEntry('SITE_KEY', '');
44
45 // CFG: DATE-KEY
46 setConfigEntry('DATE_KEY', generateDateTime(time(), '5'));
47
48 // CFG: DEFAULT-LANGUAGE
49 setConfigEntry('DEFAULT_LANG', 'de');
50
51 // CFG: NULLPASS-WARNING
52 setConfigEntry('WARN_NO_PASS', 'Y');
53
54 // CFG: WRITE-FOOTER
55 setConfigEntry('WRITE_FOOTER', 'Y');
56
57 // CFG: OUTPUT-MODE
58 setConfigEntry('OUTPUT_MODE', 'render');
59
60 // CFG: INSTALLED
61 setConfigEntry('MAILER_INSTALLED', 'N');
62
63 // CFG: ADMIN-SETUP
64 setConfigEntry('ADMIN_REGISTERED', 'N');
65
66 // CFG: MYSQL-PREFIX
67 setConfigEntry('_MYSQL_PREFIX', 'mxchange');
68
69 // CFG: TABLE-TYPE
70 setConfigEntry('_TABLE_TYPE', 'MyISAM');
71
72 // CFG: DATABASE-TYPE
73 setConfigEntry('_DB_TYPE', 'mysql');
74
75 // CFG: BACKLINK (Enable backlink to mxchange.org in footer? rel=external is set!)
76 setConfigEntry('ENABLE_BACKLINK', 'Y');
77
78 // CFG: DEBUG-MODE (if enabled all mails will be *displayed* and *not* send!)
79 setConfigEntry('DEBUG_MODE', 'N');
80
81 // CFG: DEBUG-TEMPLATE-CACHE
82 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
83
84 // CFG: DEBUG-SQL (Logs all queries to inc/cache/mysql.log)
85 //setConfigEntry('DEBUG_SQL', 'Y');
86
87 // CFG: DEBUG-HOURLY (comment in to test hourly reset, comment out to not test)
88 //setConfigEntry('DEBUG_HOURLY', 'Y');
89
90 // CFG: DEBUG-DAILY (comment in to test daily reset, comment out to not test)
91 //setConfigEntry('DEBUG_DAILY', 'Y');
92
93 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
94 //setConfigEntry('DEBUG_WEEKLY', 'Y');
95
96 // CFG: DEBUG-MONTHLY (comment in to test monthly reset, comment out to not test)
97 //setConfigEntry('DEBUG_MONTHLY', 'Y');
98
99 // CFG: DEBUG-YEARLY (comment in to test yearly reset, comment out to not test)
100 //setConfigEntry('DEBUG_YEARLY', 'Y');
101
102 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
103 //setConfigEntry('DEBUG_REGEX', 'Y');
104
105 // CFG: DEBUG-BUILD-MAILS
106 //setConfigEntry('DEBUG_BUILD_MAILS', 'Y');
107
108 // CFG: ALLOW-TESTER-ACCOUNTS (comment in to allow tester accounts being re-included)
109 //setConfigEntry('ALLOW_TESTER_ACCOUNTS', 'Y');
110
111 // Your MySQL data (we don't like M$ SQL ;-) )
112 $GLOBALS['mysql'] = array(
113         // CFG: MYSQL-HOST
114         'host'     => 'localhost',
115         // CFG: MYSQL-DBASE
116         'dbase'    => 'db',
117         // CFG: MYSQL-LOGIN
118         'login'    => 'user',
119         // CFG: MYSQL-PASSWORD
120         'password' => 'pass',
121 );
122
123 // SMTP-Subsystem (keep all empty to use legacy mail() command!)
124 // CFG: SMTP-HOSTNAME
125 setConfigEntry('SMTP_HOSTNAME', '');
126
127 // CFG: SMTP-USER
128 setConfigEntry('SMTP_USER'    , '');
129
130 // CFG: SMTP-PASSWORD
131 setConfigEntry('SMTP_PASSWORD', '');
132
133 // CFG: MAIN-TITLE
134 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
135
136 // CFG: SLOGAN
137 setConfigEntry('SLOGAN', 'Your cool slogan here');
138
139 // CFG: WEBMASTER
140 setConfigEntry('WEBMASTER', 'you@some-hoster.tld.invalid');
141
142 // [EOF]
143 ?>