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.

bimi.conf 1002B

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/bimi.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/bimi.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. # Currently there is no documentation for this module. When it is written it will
  14. # be available at https://rspamd.com/doc/modules/bimi.html
  15. bimi {
  16. # Required attributes
  17. #helper_url = "http://127.0.0.1:3030",
  18. helper_timeout = 5s;
  19. helper_sync = true;
  20. vmc_only = true;
  21. redis_prefix = 'rs_bimi';
  22. redis_min_expiry = 24h;
  23. # Enable in local.d/bimi.conf
  24. enabled = false;
  25. .include(try=true,priority=5) "${DBDIR}/dynamic/bimi.conf"
  26. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/bimi.conf"
  27. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/bimi.conf"
  28. }