-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
DMARC.cf
32 lines (27 loc) · 1005 Bytes
/
DMARC.cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ifplugin Mail::SpamAssassin::Plugin::DMARC
ifplugin Mail::SpamAssassin::Plugin::DKIM
ifplugin Mail::SpamAssassin::Plugin::SPF
dmarc_save_reports 0
header DMARC_REJECT eval:check_dmarc_reject()
priority DMARC_REJECT 500
describe DMARC_REJECT DMARC fail with reject policy
score DMARC_REJECT 0.3
header DMARC_QUAR eval:check_dmarc_quarantine()
priority DMARC_QUAR 500
describe DMARC_QUAR DMARC fail with quarantine policy
score DMARC_QUAR 0.2
header DMARC_NONE eval:check_dmarc_none()
priority DMARC_NONE 500
describe DMARC_NONE DMARC fail with none policy
score DMARC_NONE 0.1
header DMARC_MISSING eval:check_dmarc_missing()
priority DMARC_MISSING 500
describe DMARC_MISSING DMARC policy missing
score DMARC_MISSING 0.0
header DMARC_PASS eval:check_dmarc_pass()
priority DMARC_PASS 500
describe DMARC_PASS DMARC tests pass
score DMARC_PASS -0.1
endif
endif
endif