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/lib/imap/socket 12 # You will have either remove the listen parameters or modify it. 13 SERVICES { 14 # add or remove based on preferences 15 imap cmd="imapd" listen="imap" prefork=0 16 imaps cmd="imapd -s" listen="imaps" prefork=0 17 pop3 cmd="pop3d" listen="pop3" prefork=0 18 pop3s cmd="pop3d -s" listen="pop3s" prefork=0 19 sieve cmd="timsieved" listen="sieve" prefork=0 20 21 # at least one LMTP is required for delivery 22 # lmtp cmd="lmtpd" listen="lmtp" prefork=0 23 lmtpunix cmd="lmtpd" listen="/var/lib/imap/socket/lmtp" prefork=0 24 25 # this is only necessary if using notifications 26 # notify cmd="notifyd" listen="/var/lib/imap/socket/notify" proto="udp" prefork=1 27 } 28 29 EVENTS { 30 # this is required 31 checkpoint cmd="ctl_cyrusdb -c" period=30 32 33 # this is only necessary if using duplicate delivery suppression 34 delprune cmd="cyr_expire -E 3" at=0400 35 36 # this is only necessary if caching TLS sessions 37 tlsprune cmd="tls_prune" at=0400 38 39 # Uncomment the next entry, if you want to automatically remove 40 # old messages of EVERY user. 41 # This example calls ipurge every 60 minutes and ipurge will delete 42 # ALL messages older then 30 days. 43 # enter 'man 8 ipurge' for more details 44 45 # cleanup cmd="ipurge -d 30 -f" period=60 46 }