mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-09-18 18:04:19 +08:00
55 lines
1.3 KiB
TOML
55 lines
1.3 KiB
TOML
#############################################
|
|
# SMTP reporting configuration
|
|
#############################################
|
|
|
|
[report]
|
|
#submitter = "%{HOST}%"
|
|
|
|
[report.analysis]
|
|
addresses = ["dmarc@*", "abuse@*", "postmaster@*"]
|
|
forward = true
|
|
store = "30d"
|
|
|
|
[report.dsn]
|
|
from-name = "'Mail Delivery Subsystem'"
|
|
from-address = "'MAILER-DAEMON@%{DEFAULT_DOMAIN}%'"
|
|
sign = "['rsa']"
|
|
|
|
[report.dkim]
|
|
from-name = "'Report Subsystem'"
|
|
from-address = "'noreply-dkim@%{DEFAULT_DOMAIN}%'"
|
|
subject = "'DKIM Authentication Failure Report'"
|
|
sign = "['rsa']"
|
|
send = "[1, 1d]"
|
|
|
|
[report.spf]
|
|
from-name = "'Report Subsystem'"
|
|
from-address = "'noreply-spf@%{DEFAULT_DOMAIN}%'"
|
|
subject = "'SPF Authentication Failure Report'"
|
|
send = "[1, 1d]"
|
|
sign = "['rsa']"
|
|
|
|
[report.dmarc]
|
|
from-name = "'Report Subsystem'"
|
|
from-address = "'noreply-dmarc@%{DEFAULT_DOMAIN}%'"
|
|
subject = "'DMARC Authentication Failure Report'"
|
|
send = "[1, 1d]"
|
|
sign = "['rsa']"
|
|
|
|
[report.dmarc.aggregate]
|
|
from-name = "'DMARC Report'"
|
|
from-address = "'noreply-dmarc@%{DEFAULT_DOMAIN}%'"
|
|
org-name = "'%{DEFAULT_DOMAIN}%'"
|
|
#contact-info = ""
|
|
send = "daily"
|
|
max-size = 26214400 # 25mb
|
|
sign = "['rsa']"
|
|
|
|
[report.tls.aggregate]
|
|
from-name = "'TLS Report'"
|
|
from-address = "'noreply-tls@%{DEFAULT_DOMAIN}%'"
|
|
org-name = "'%{DEFAULT_DOMAIN}%'"
|
|
#contact-info = ""
|
|
send = "daily"
|
|
max-size = 26214400 # 25 mb
|
|
sign = "['rsa']"
|