-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample
38 lines (28 loc) · 988 Bytes
/
config.sample
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
[SVN-DIFF]
# turn debug logging on/off
debug = true
# poll interval (in minutes)
# if 0 or negative the script will run once and exit
interval = 10
smtpserver = smtpserver.com
subscribers = [email protected]
from_domain = mydomain.com
# maximum size (in bytes) of diff output that should be emailed
# 0 or negative value means no maximum
max_diff_size = 1000000
[PROJECT1]
# SVN URL
repo = http://svnserver.com/repo/PROJECT1
# interval and subscribers can be overwritten on per project basis
interval = 15
subscribers = [email protected], [email protected]
[PROJECT2]
repo = http://svnserver.com/repo/PROJECT2
# directory to save diff files instead of emailing them
# must be defined per project (but cab be the same for multiple projects)
diff_dir = /tmp/project2/svn-diff
# if ture then a directory per commit date will be created to store diff files
group_by_date = true
# readable names
author_name.a1 = John Black
author_name.a2 = Julia Brown