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.3KB

1234567891011121314151617181920212223242526272829303132333435
  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/phishing.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/phishing.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/phishing.html
  14. phishing {
  15. symbol = "PHISHING";
  16. # Disabled by default
  17. openphish_enabled = false;
  18. openphish_premium = false;
  19. openphish_map = "https://www.openphish.com/feed.txt";
  20. # Phishtank is disabled by default in the module, so let's enable it here explicitly
  21. phishtank_enabled = true;
  22. # Make exclusions for known redirectors
  23. redirector_domains = [
  24. "https://maps.rspamd.com/rspamd/redirectors.inc.zst:REDIRECTOR_FALSE",
  25. "$LOCAL_CONFDIR/local.d/maps.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
  26. "$LOCAL_CONFDIR/local.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
  27. "fallback+file://${CONFDIR}/maps.d/redirectors.inc:REDIRECTOR_FALSE"
  28. ];
  29. .include(try=true,priority=5) "${DBDIR}/dynamic/phishing.conf"
  30. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/phishing.conf"
  31. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/phishing.conf"
  32. }