Advertisement
saitam10

/etc/default/spamassassin

Dec 24th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Duncan Findlay
  2.  
  3. # WARNING: please read README.spamd before using.
  4. # There may be security risks.
  5.  
  6. # If you're using systemd (default for jessie), the ENABLED setting is
  7. # not used. Instead, enable spamd by issuing:
  8. # systemctl enable spamassassin.service
  9. # Change to "1" to enable spamd on systems using sysvinit:
  10. ENABLED=1
  11.  
  12. # Options
  13. # See man spamd for possible options. The -d option is automatically added.
  14.  
  15. # SpamAssassin uses a preforking model, so be careful! You need to
  16. # make sure --max-children is not set to anything higher than 5,
  17. # unless you know what you're doing.
  18.  
  19. OPTIONS="--create-prefs --max-children 5 --helper-home-dir"
  20.  
  21. # Pid file
  22. # Where should spamd write its PID to file? If you use the -u or
  23. # --username option above, this needs to be writable by that user.
  24. # Otherwise, the init script will not be able to shut spamd down.
  25. PIDFILE="/var/run/spamd.pid"
  26.  
  27. # Set nice level of spamd
  28. #NICE="--nicelevel 15"
  29.  
  30. # Cronjob
  31. # Set to anything but 0 to enable the cron job to automatically update
  32. # spamassassin's rules on a nightly basis
  33. CRON=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement