summaryrefslogtreecommitdiff
path: root/spamassassin/default/spamassassin
blob: 78b717fffa7f8ece6bc4766c6f0eddbab0b8256f (plain)
  1. # /etc/default/spamassassin
  2. # Duncan Findlay
  3. # WARNING: please read README.spamd before using.
  4. # There may be security risks.
  5. # If you're using systemd (default for jessie), the ENABLED setting is
  6. # not used. Instead, enable spamd by issuing:
  7. # systemctl enable spamassassin.service
  8. # Change to "1" to enable spamd on systems using sysvinit:
  9. ENABLED=1
  10. # Options
  11. # See man spamd for possible options. The -d option is automatically added.
  12. # SpamAssassin uses a preforking model, so be careful! You need to
  13. # make sure --max-children is not set to anything higher than 5,
  14. # unless you know what you're doing.
  15. OPTIONS="--create-prefs --max-children 5 --helper-home-dir -u debian-spamd -g debian-spamd --nouser-config --listen /var/run/spamassassin/spamd.sock --socketowner debian-spamd --socketgroup debian-spamd --socketmode 0660"
  16. # Pid file
  17. # Where should spamd write its PID to file? If you use the -u or
  18. # --username option above, this needs to be writable by that user.
  19. # Otherwise, the init script will not be able to shut spamd down.
  20. PIDFILE="/var/run/spamd.pid"
  21. # Set nice level of spamd
  22. #NICE="--nicelevel 15"
  23. # Cronjob
  24. # Set to anything but 0 to enable the cron job to automatically update
  25. # spamassassin's rules on a nightly basis
  26. CRON=1