You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829
  1. # Actions settings
  2. # Please don't modify this file as your changes might be overwritten with
  3. # the next update.
  4. #
  5. # You can modify 'local.d/actions.conf' to add and merge
  6. # parameters defined inside this section
  7. #
  8. # You can modify 'override.d/actions.conf' to strictly override all
  9. # parameters defined inside this section
  10. #
  11. # See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories
  12. # for details
  13. #
  14. # See also https://rspamd.com/doc/faq.html#what-are-rspamd-actions for actions definition
  15. actions {
  16. reject = 15; # Reject when reaching this score
  17. add_header = 6; # Add header when reaching this score
  18. greylist = 4; # Apply greylisting when reaching this score (will emit `soft reject action`)
  19. #unknown_weight = 1.0; # Enable if need to set score for all symbols implicitly
  20. # Each new symbol is added multiplied by gf^N, where N is the number of spammy symbols
  21. #grow_factor = 1.1;
  22. # Set rewrite subject to this value (%s is replaced by the original subject)
  23. #subject = "***SPAM*** %s"
  24. .include(try=true; priority=1; duplicate=merge) "$LOCAL_CONFDIR/local.d/actions.conf"
  25. .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/actions.conf"
  26. }