blob: 761d889498dd14e7625e122187e305076bc53613 (
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
|
<?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, probably without the http:// to avoid extra requests */
$host = "http://.../index.php"
$defaulttimezone = date_default_timezone_get();
?>
|