source: npl/mailserver/cyrus-imapd/normal.conf @ 26ffad7

Last change on this file since 26ffad7 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 1.3 KB
Line 
1# standard standalone server implementation
2
3START {
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
12SERVICES {
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
32EVENTS {
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}
Note: See TracBrowser for help on using the repository browser.