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.

replies.conf 1.1KB

123456789101112131415161718192021222324252627282930
  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/replies.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/replies.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/replies.html
  14. replies {
  15. # This setting is non-default & is required to be set
  16. # Redis servers to use
  17. #servers = "localhost";
  18. # This setting is non-default & may be desirable
  19. #action = "no action";
  20. # These are default settings you may want to change
  21. expire = 86400;
  22. key_prefix = "rr";
  23. message = "Message is reply to one we originated";
  24. symbol = "REPLY";
  25. .include(try=true,priority=5) "${DBDIR}/dynamic/replies.conf"
  26. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/replies.conf"
  27. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/replies.conf"
  28. }