-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.cfg
91 lines (68 loc) · 2.39 KB
/
example.cfg
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# The test suite uses this example configuration. Just copy
# it to goat.cfg and customise.
#### Paths
# Typical for a Unix system
#logfile: /var/log/goat/goat.log
#tmp_dir: /tmp
#sgf_dir: /var/www/goat/sgf
#template_dir: /usr/share/goat/fr # Which e-mail templates to use
# for test suite
logfile: ./log/goat.log
tmp_dir: ./tmp
sgf_dir: ./sgf
template_dir: ../../fr
##### Tournament settings
# Which address receives for Goat?
goat_address: GO Assistant <[email protected]>
# What is the tournament admin address?
admin_address: Yves Rutschle <[email protected]>
# Who do we send results to?
rating_manager: [email protected]
# Tournament name and city
tournament_file: toperm
tournament_name: Tournoi pérmanent de Tøulouse
tournament_city: Toulouse
# URL for the applicable echelle file
# Hybride for Internet or mixed tournaments
# tournament_echelle: https://ffg.jeudego.org/echelle/hybtxt/ech_ffg_V3.txt
# Official, for in-person tournaments
tournament_echelle: https://ffg.jeudego.org/echelle/echtxt/ech_ffg_V3.txt
# License character codes allowed in this tournament
tournament_licenses: LC
# Handicap: '0': Normal; '1': H-1; etc
handicap: 1
# Criteria used for pairing. Corresponds to keys to
# %criteria in `pair`.
pairing_criteria: level_diff already_played same_club
##### Web settings
# SGF are always saved to local directory sgf_dir
# (use symbolic links to save the file where appropriate)
# This setting is used to point the CGI to the right URL.
sgf_url: /tournois/tls/sgf
# URL to tournament index (e.g. rule page)
index_url: /tournois/toperm_tls.html
locale: fr_FR
timezone: Europe/Paris
# do you want to forward all outgoing emails to admin adress ?
# yes or no
admin_forward: no
# what prefix to prepend to mail subject (surround by [] )
subject_prefix: goat
##### E-mail Rx/Tx
# IMAP Settings, if using imap_frontend
imap_server: imap.gmail.com
# imaps is the default if no port is specified
imap_port: imaps
# Specifiy if you use own CA or self-signed certificate
#imap_root_ca: rutschle_ca.pem
imap_user: my_gmail_id
imap_passwd: v3ry$tr0ng
# SMTP setting: if not set, we'll try local sendmail
smtp_server: smtp.gmail.com
# submussion is the default if no port specified
smtp_port: submission
smtp_user: my_gmail_id
# May be the same as IMAP user/passwd depending on settings
smtp_passwd: v3ry$tr0ng
# There is more configuration in GoatConfig.pm, but it
# shouldn't really need to be touched.