No Description
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.

etc_rspamd_local.d_dmarc.conf.j2 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Enables storing reporting information to redis
  2. reporting = true;
  3. # Actions to enforce based on DMARC disposition
  4. actions = {
  5. quarantine = "add_header";
  6. reject = "reject";
  7. }
  8. # From Rspamd 1.6 experimental support for generation of DMARC reports is provided.
  9. # send_reports MUST be true
  10. send_reports = false;
  11. # report_settings MUST be present
  12. report_settings {
  13. # The following elements MUST be present
  14. # organisation name to use for reports
  15. org_name = "xythobuzSovereign";
  16. # organisation domain
  17. domain = "{{ domain }}";
  18. # sender address to use for reports
  19. email = "postmaster@{{ domain }}";
  20. # The following elements MAY be present
  21. # SMTP host to send reports to ("127.0.0.1" if unset)
  22. # smtp = "127.0.0.1";
  23. # TCP port to use for SMTP (25 if unset)
  24. # smtp_port = 25;
  25. # HELO to use for SMTP ("rspamd" if unset)
  26. # helo = "rspamd";
  27. # Number of retries on temporary errors (2 if unset)
  28. # retries = 2;
  29. # Send DMARC reports here instead of domain owners
  30. # override_address = "postmaster@example.net";
  31. # Send DMARC reports here in addition to domain owners
  32. # additional_address = "postmaster@{{ domain }}";
  33. # Number of records to request with HSCAN
  34. # hscan_count = 200
  35. }