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.

trie.conf 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Please don't modify this file as your changes might be overwritten with
  2. # the next update.
  3. #
  4. # You can modify 'local.d/trie.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/trie.conf' to strictly override all
  8. # parameters defined inside this section
  9. #
  10. # See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories
  11. # for details
  12. #
  13. # Module documentation can be found at https://rspamd.com/doc/modules/trie.html
  14. trie {
  15. # Each subsection defines a single rule with associated symbol
  16. # This config defines no tries leaving this module efficiently disabled by default
  17. # SYMBOL1 {
  18. # # Define rules in the file (it is *NOT* a map)
  19. # file = "/some/path";
  20. # # Raw rules search within the whole undecoded messages
  21. # raw = true;
  22. # # If we have multiple occurrences of strings from this rule
  23. # # then we insert a symbol multiple times
  24. # multi = true;
  25. # }
  26. # SYMBOL2 {
  27. # patterns = [
  28. # "pattern1",
  29. # "pattern2",
  30. # "pattern3"
  31. # ]
  32. # }
  33. .include(try=true,priority=5) "${DBDIR}/dynamic/trie.conf"
  34. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/trie.conf"
  35. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/trie.conf"
  36. }