blob: 0ccd54089016d98bc22f3a4627ddfc031f4363bc (
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
|
<?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";
/* the default timezone for you domain */
$defaulttimezone = date_default_timezone_get();
?>
|