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.

asn.conf 949B

1234567891011121314151617181920212223242526272829
  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/asn.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/asn.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/asn.html
  14. asn {
  15. # Provider: just "rspamd" for now
  16. provider_type = "rspamd";
  17. # Provider-specific configuration
  18. provider_info {
  19. ip4 = "asn.rspamd.com";
  20. ip6 = "asn6.rspamd.com";
  21. }
  22. # If defined, insert symbol with lookup results
  23. # symbol = "ASN";
  24. .include(try=true,priority=5) "${DBDIR}/dynamic/asn.conf"
  25. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/asn.conf"
  26. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/asn.conf"
  27. }