-
Notifications
You must be signed in to change notification settings - Fork 1
/
simvacation.conf
40 lines (34 loc) · 1.01 KB
/
simvacation.conf
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
core {
# Lookup backend to use
vlu = ldap;
# Vacation database backend to use
vdb = redis;
interval = 3d;
group_interval = 3d;
sendmail = /usr/sbin/simsendmail -f "" $R;
default_message = "I am currently out of email contact.\nYour mail will be read when I return.";
default_group_message = "Messages to this group are not monitored.\nYou may want to try a different contact method."
subject_prefix = "Out of email contact";
group_subject_prefix = "Automated Reply";
domain = umich.edu;
}
ldap {
uri = ldap://ldap.umich.edu/
attributes {
autoreply_start = umichAutoReplyStart;
autoreply_end = umichAutoReplyEnd;
vacation = onVacation;
vacation_message = vacationMessage;
name = displayName;
group_message = umichAutoReply;
}
search_base = "ou=People,dc=umich,dc=edu";
group_search_base = "ou=Groups,dc=umich,dc=edu";
}
redis {
host = 127.0.0.1;
port = 6379;
}
lmdb {
path = /var/lib/simvacation;
}