Skip to content

DmarcReportSettings

Configures DMARC aggregate and failure report generation.

This object can be configured from the WebUI under Settings › MTA › Reports › DMARC

Type: Expression · default: {"else":"false"}

Contact information to be included in the report

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"'noreply-dmarc@' + system('domain')"}

Email address that will be used in the From header of the DMARC aggregate report email

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"'Report Subsystem'"}

Name that will be used in the From header of the DMARC aggregate report email

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"5242880"}

Maximum size of the DMARC aggregate report in bytes

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"system('domain')"}

Name of the organization to be included in the report

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"daily"}

Frequency at which the DMARC aggregate reports will be sent. The options are hourly, daily, weekly, or disable to disable reporting

Available variables: MtaRcptToVariable.

Available constants: MtaAggregateConstant.

Type: Expression · default: {"else":"system('domain')"}

Which domain’s DKIM signatures to use when signing the DMARC aggregate report

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"'DMARC Aggregate Report'"}

Subject name that will be used in the DMARC aggregate report email

Available variables: MtaRcptDomainVariable.

Type: Expression · default: {"else":"'noreply-dmarc@' + system('domain')"}

Email address that will be used in the From header of the DMARC authentication failure report email

Available variables: MtaRcptToVariable.

Type: Expression · default: {"else":"'Report Subsystem'"}

Name that will be used in the From header of the DMARC report email

Available variables: MtaRcptToVariable.

Type: Expression · default: {"else":"[1, 1d]"}

Rate at which DMARC reports will be sent to a given email address. When this rate is exceeded, no further DMARC failure reports will be sent to that address

Available variables: MtaRcptToVariable.

Type: Expression · default: {"else":"system('domain')"}

Which domain’s DKIM signatures to use when signing the DMARC authentication failure report

Available variables: MtaRcptToVariable.

Type: Expression · default: {"else":"'DMARC Authentication Failure Report'"}

Subject name that will be used in the DMARC authentication failure report email

Available variables: MtaRcptToVariable.

The DmarcReportSettings singleton is available via the urn:stalwart:jmap capability.

This is a standard Foo/get method as defined in RFC 8620, Section 5.1.

For singletons, the ids argument should be the literal singleton (or null to return the single instance).

This method requires the sysDmarcReportSettingsGet permission.

Terminal window
curl -X POST https://mail.example.com/api \
-H 'Authorization: Bearer $TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"methodCalls": [
[
"x:DmarcReportSettings/get",
{
"ids": [
"singleton"
]
},
"c1"
]
],
"using": [
"urn:ietf:params:jmap:core",
"urn:stalwart:jmap"
]
}'

This is a standard Foo/set method as defined in RFC 8620, Section 5.3.

For singletons, only the update argument with id singleton is accepted; create and destroy arguments are rejected.

This method requires the sysDmarcReportSettingsUpdate permission.

Terminal window
curl -X POST https://mail.example.com/api \
-H 'Authorization: Bearer $TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"methodCalls": [
[
"x:DmarcReportSettings/set",
{
"update": {
"singleton": {
"aggregateContactInfo": {
"else": "false"
}
}
}
},
"c1"
]
],
"using": [
"urn:ietf:params:jmap:core",
"urn:stalwart:jmap"
]
}'

stalwart-cli wraps the same JMAP calls. See the CLI reference for installation, authentication, and general usage.

Terminal window
stalwart-cli get DmarcReportSettings
Terminal window
stalwart-cli update DmarcReportSettings --field aggregateContactInfo='{"else":"false"}'

A conditional expression with match rules and a default value.

Type: ExpressionMatch[]

List of conditions and their corresponding results

Type: String · required

Else condition

A single condition-result pair in an expression.

Type: String · required

If condition

Type: String · required

Then clause

The following expression contexts are used by fields on this page: