1 | # standard standalone server implementation |
---|
2 | |
---|
3 | START { |
---|
4 | # do not delete this entry! |
---|
5 | recover cmd="ctl_cyrusdb -r" |
---|
6 | |
---|
7 | # this is only necessary if using idled for IMAP IDLE |
---|
8 | # idled cmd="idled" |
---|
9 | } |
---|
10 | |
---|
11 | # UNIX sockets start with a slash and are put into /var/imap/socket |
---|
12 | SERVICES { |
---|
13 | # add or remove based on preferences |
---|
14 | imap cmd="imapd" listen="imap" prefork=0 |
---|
15 | imaps cmd="imapd -s" listen="imaps" prefork=0 |
---|
16 | # pop3 cmd="pop3d" listen="pop3" prefork=0 |
---|
17 | # pop3s cmd="pop3d -s" listen="pop3s" prefork=0 |
---|
18 | sieve cmd="timsieved" listen="sieve" prefork=0 |
---|
19 | |
---|
20 | # these are only necessary if receiving/exporting usenet via NNTP |
---|
21 | # nntp cmd="nntpd" listen="nntp" prefork=0 |
---|
22 | # nntps cmd="nntpd -s" listen="nntps" prefork=0 |
---|
23 | |
---|
24 | # at least one LMTP is required for delivery |
---|
25 | # lmtp cmd="lmtpd" listen="lmtp" prefork=0 |
---|
26 | lmtpunix cmd="lmtpd" listen="/home/system/cyrus-imap/socket/lmtp" prefork=0 |
---|
27 | |
---|
28 | # this is only necessary if using notifications |
---|
29 | # notify cmd="notifyd" listen="/home/system/cyrus-imap/socket/notify" proto="udp" prefork=1 |
---|
30 | } |
---|
31 | |
---|
32 | EVENTS { |
---|
33 | # this is required |
---|
34 | checkpoint cmd="ctl_cyrusdb -c" period=30 |
---|
35 | |
---|
36 | # this is only necessary if using duplicate delivery suppression, |
---|
37 | # Sieve or NNTP |
---|
38 | delprune cmd="cyr_expire -E 3" at=0400 |
---|
39 | |
---|
40 | # this is only necessary if caching TLS sessions |
---|
41 | tlsprune cmd="tls_prune" at=0400 |
---|
42 | } |
---|