url_reputation.conf 833 B

1234567891011121314151617181920212223242526
  1. # Key prefix for redis - default "Ur."
  2. key_prefix = "Ur.";
  3. # Symbols to insert - defaults as shown
  4. symbols {
  5. white = "URL_REPUTATION_WHITE";
  6. black = "URL_REPUTATION_BLACK";
  7. grey = "URL_REPUTATION_GREY";
  8. neutral = "URL_REPUTATION_NEUTRAL";
  9. }
  10. # DKIM/DMARC/SPF allow symbols - defaults as shown
  11. foreign_symbols {
  12. dmarc = "DMARC_POLICY_ALLOW";
  13. dkim = "R_DKIM_ALLOW";
  14. spf = "R_SPF_ALLOW";
  15. }
  16. # SURBL metatags to ignore - default as shown
  17. ignore_surbl = ["URIBL_BLOCKED", "DBL_PROHIBIT", "SURBL_BLOCKED"];
  18. # Amount of samples required for scoring - default 5
  19. threshold = 5;
  20. # Maximum number of TLDs to update reputation on (default 1)
  21. update_limit = 1;
  22. # Maximum number of TLDs to query reputation on (default 100)
  23. query_limit = 100;
  24. # If true, try to find most 'relevant' URL (default true)
  25. relevance = true;
  26. enabled = true;