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.

phishing.conf 1.4KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Please don't modify this file as your changes might be overwritten with
  2. # the next update.
  3. #
  4. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local.override' to redefine
  5. # parameters defined on the top level
  6. #
  7. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local' to add
  8. # parameters defined on the top level
  9. #
  10. # For specific modules or configuration you can also modify
  11. # '$LOCAL_CONFDIR/local.d/file.conf' - to add your options or rewrite defaults
  12. # '$LOCAL_CONFDIR/override.d/file.conf' - to override the defaults
  13. #
  14. # See https://rspamd.com/doc/tutorials/writing_rules.html for details
  15. phishing {
  16. symbol = "PHISHING";
  17. # Disabled by default
  18. openphish_enabled = false;
  19. openphish_premium = false;
  20. openphish_map = "https://www.openphish.com/feed.txt";
  21. # Disabled by default
  22. phishtank_enabled = true;
  23. # Make exclusions for known redirectors
  24. redirector_domains = [
  25. "https://maps.rspamd.com/rspamd/redirectors.inc.zst:REDIRECTOR_FALSE",
  26. "$LOCAL_CONFDIR/local.d/maps.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
  27. "$LOCAL_CONFDIR/local.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
  28. "fallback+file://${CONFDIR}/maps.d/redirectors.inc:REDIRECTOR_FALSE"
  29. ];
  30. .include(try=true,priority=5) "${DBDIR}/dynamic/phishing.conf"
  31. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/phishing.conf"
  32. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/phishing.conf"
  33. }