blob: 29212ca0561b7598950530352d05a78afffb21cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
/* the program needs this to access the mysql database */
$DB_host = "";
$DB_user = "";
$DB_password = "";
$DB_database = "";
/* set this to 1 to debug the server
* emails won't be send out, but be shown on the page;
* each player name at the table will be a link to get
* to his view;
*/
$debug = 0;
/* set this to 1, if you want to work on the DB
* the users won't be able to log in and get a message
* to check back later
*/
$DB_work = 0;
$ADMIN_NAME = "";
$ADMIN_EMAIL = "";
/* the prefix for the subject of each email */
$EmailName = "[DoKo]";
/* used as the reply email in each email */
$EMAIL_REPLY="";
/* this should point to your index.file and to your domain*/
$INDEX = "/index.php";
$HOST = "http://www.example.com";
/* point this to a Wiki that explains the rules, etc (or use this one)*/
$WIKI = "http://wiki.nubati.net/index.php?title=EmailDoko";
/* the default timezone for you domain */
$defaulttimezone = date_default_timezone_get();
?>
|