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.

dcc.conf 981B

12345678910111213141516171819202122232425262728
  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/dcc.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/dcc.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/dcc.html
  14. dcc {
  15. enabled = false;
  16. # Define local socket or TCP servers in upstreams syntax
  17. # When sockets and servers are definined - servers is used!
  18. socket = "/var/dcc/dccifd"; # Unix socket
  19. #servers = "127.0.0.1:10045" # OR TCP upstreams
  20. timeout = 2s; # Timeout to wait for checks
  21. .include(try=true,priority=5) "${DBDIR}/dynamic/dcc.conf"
  22. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/dcc.conf"
  23. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/dcc.conf"
  24. }