summaryrefslogtreecommitdiffstats
path: root/config.php_template
blob: fb84a51d04270b41e331b01cb021036d9a710bd2 (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
<?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 */
    $host = "http://.../index.php"
?>