cyrus.conf 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Standard standalone server configuration.
  2. START {
  3. # Do not delete this entry!
  4. recover cmd="ctl_cyrusdb -r"
  5. # This is only necessary if using idled for IMAP IDLE.
  6. #idled cmd="idled"
  7. }
  8. # UNIX sockets start with a slash and are put into /var/imap/socket.
  9. SERVICES {
  10. # Add or remove based on preferences.
  11. imap cmd="imapd" listen="imap2" prefork=0
  12. pop3 cmd="pop3d" listen="pop-3" prefork=0
  13. # Don't forget to generate the needed keys for SSL or TLS
  14. # (see doc/html/install-configure.html).
  15. #imaps cmd="imapd -s" listen="imaps" prefork=0
  16. #pop3s cmd="pop3d -s" listen="pop3s" prefork=0
  17. sieve cmd="timsieved" listen="sieve" prefork=0
  18. # at least one LMTP is required for delivery
  19. #lmtp cmd="lmtpd" listen="lmtp" prefork=0
  20. lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0
  21. # this is only necessary if using notifications
  22. #notify cmd="notifyd" listen="/var/imap/socket/notify" proto="udp" prefork=1
  23. }
  24. EVENTS {
  25. # This is required.
  26. checkpoint cmd="ctl_cyrusdb -c" period=30
  27. # This is only necessary if using duplicate delivery suppression.
  28. delprune cmd="ctl_deliver -E 3" period=1440
  29. # This is only necessary if caching TLS sessions.
  30. tlsprune cmd="tls_prune" period=1440
  31. }