-
Notifications
You must be signed in to change notification settings - Fork 6
/
draft-ietf-dmarc-dmarcbis-24.txt
3920 lines (2692 loc) · 162 KB
/
draft-ietf-dmarc-dmarcbis-24.txt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DMARC T. Herr (ed)
Internet-Draft Valimail
Obsoletes: 7489, 9091 (if approved) J. Levine (ed)
Intended status: Standards Track Standcore LLC
Expires: 13 May 2023 9 November 2022
Domain-based Message Authentication, Reporting, and Conformance (DMARC)
draft-ietf-dmarc-dmarcbis-24
Abstract
This document describes the Domain-based Message Authentication,
Reporting, and Conformance (DMARC) protocol.
DMARC permits the owner of an email author's domain name to enable
verification of the domain's use, to indicate the Domain Owner's or
Public Suffix Operator's message handling preference regarding failed
verification, and to request reports about the use of the domain
name. Mail receiving organizations can use this information when
evaluating handling choices for incoming mail.
This document obsoletes RFCs 7489 and 9091.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on 13 May 2023.
Copyright Notice
Copyright (c) 2022 IETF Trust and the persons identified as the
document authors. All rights reserved.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 1]
Internet-Draft DMARCbis November 2022
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents (https://trustee.ietf.org/
license-info) in effect on the date of publication of this document.
Please review these documents carefully, as they describe your rights
and restrictions with respect to this document. Code Components
extracted from this document must include Revised BSD License text as
described in Section 4.e of the Trust Legal Provisions and are
provided without warranty as described in the Revised BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
2. Requirements . . . . . . . . . . . . . . . . . . . . . . . . 6
2.1. High-Level Goals . . . . . . . . . . . . . . . . . . . . 6
2.2. Anti-Phishing . . . . . . . . . . . . . . . . . . . . . . 7
2.3. Scalability . . . . . . . . . . . . . . . . . . . . . . . 7
2.4. Out of Scope . . . . . . . . . . . . . . . . . . . . . . 7
3. Terminology and Definitions . . . . . . . . . . . . . . . . . 8
3.1. Conventions Used in This Document . . . . . . . . . . . . 8
3.2. Definitions . . . . . . . . . . . . . . . . . . . . . . . 8
3.2.1. Authenticated Identifiers . . . . . . . . . . . . . . 8
3.2.2. Author Domain . . . . . . . . . . . . . . . . . . . . 8
3.2.3. Domain Owner . . . . . . . . . . . . . . . . . . . . 9
3.2.4. Identifier Alignment . . . . . . . . . . . . . . . . 9
3.2.5. Mail Receiver . . . . . . . . . . . . . . . . . . . . 9
3.2.6. Non-existent Domains . . . . . . . . . . . . . . . . 9
3.2.7. Organizational Domain . . . . . . . . . . . . . . . . 9
3.2.8. Public Suffix Domain (PSD) . . . . . . . . . . . . . 9
3.2.9. Public Suffix Operator (PSO) . . . . . . . . . . . . 10
3.2.10. PSO Controlled Domain Names . . . . . . . . . . . . . 10
3.2.11. Report Consumer . . . . . . . . . . . . . . . . . . . 10
4. Overview and Key Concepts . . . . . . . . . . . . . . . . . . 10
4.1. DMARC Basics . . . . . . . . . . . . . . . . . . . . . . 10
4.2. Use of RFC5322.From . . . . . . . . . . . . . . . . . . . 11
4.3. Authentication Mechanisms . . . . . . . . . . . . . . . . 12
4.4. Identifier Alignment Explained . . . . . . . . . . . . . 12
4.4.1. DKIM-Authenticated Identifiers . . . . . . . . . . . 13
4.4.2. SPF-Authenticated Identifiers . . . . . . . . . . . . 14
4.4.3. Alignment and Extension Technologies . . . . . . . . 14
4.5. Flow Diagram . . . . . . . . . . . . . . . . . . . . . . 14
4.6. DNS Tree Walk . . . . . . . . . . . . . . . . . . . . . . 16
4.7. DMARC Policy Discovery . . . . . . . . . . . . . . . . . 17
4.8. Organizational Domain Discovery . . . . . . . . . . . . . 18
5. Policy . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
5.1. DMARC Policy Record . . . . . . . . . . . . . . . . . . . 21
5.2. DMARC URIs . . . . . . . . . . . . . . . . . . . . . . . 21
5.3. General Record Format . . . . . . . . . . . . . . . . . . 21
5.4. Formal Definition . . . . . . . . . . . . . . . . . . . . 25
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 2]
Internet-Draft DMARCbis November 2022
5.5. Domain Owner Actions . . . . . . . . . . . . . . . . . . 27
5.5.1. Publish an SPF Policy for an Aligned Domain . . . . . 27
5.5.2. Configure Sending System for DKIM Signing Using an
Aligned Domain . . . . . . . . . . . . . . . . . . . 28
5.5.3. Setup a Mailbox to Receive Aggregate Reports . . . . 28
5.5.4. Publish a DMARC Policy for the Author Domain and
Organizational Domain . . . . . . . . . . . . . . . . 28
5.5.5. Collect and Analyze Reports . . . . . . . . . . . . . 29
5.5.6. Decide If and When to Update DMARC Policy . . . . . . 29
5.6. PSO Actions . . . . . . . . . . . . . . . . . . . . . . . 29
5.7. Mail Receiver Actions . . . . . . . . . . . . . . . . . . 29
5.7.1. Extract Author Domain . . . . . . . . . . . . . . . . 29
5.7.2. Determine Handling Policy . . . . . . . . . . . . . . 30
5.7.3. Store Results of DMARC Processing . . . . . . . . . . 31
5.7.4. Send Aggregate Reports . . . . . . . . . . . . . . . 31
5.8. Policy Enforcement Considerations . . . . . . . . . . . . 32
6. DMARC Feedback . . . . . . . . . . . . . . . . . . . . . . . 33
7. Changes from RFC 7489 . . . . . . . . . . . . . . . . . . . . 33
7.1. IETF Category . . . . . . . . . . . . . . . . . . . . . . 33
7.2. Changes to Terminology and Definitions . . . . . . . . . 33
7.2.1. Terms Added . . . . . . . . . . . . . . . . . . . . . 33
7.2.2. Definitions Updated . . . . . . . . . . . . . . . . . 34
7.3. Policy Discovery and Organizational Domain
Determination . . . . . . . . . . . . . . . . . . . . . . 34
7.4. Reporting . . . . . . . . . . . . . . . . . . . . . . . . 34
7.5. Tags . . . . . . . . . . . . . . . . . . . . . . . . . . 34
7.5.1. Tags Added: . . . . . . . . . . . . . . . . . . . . . 34
7.5.2. Tags Removed: . . . . . . . . . . . . . . . . . . . . 34
7.6. Domain Owner Actions . . . . . . . . . . . . . . . . . . 35
7.7. Report Generator Recommendations . . . . . . . . . . . . 35
7.8. General Editing and Formatting . . . . . . . . . . . . . 35
8. Other Topics . . . . . . . . . . . . . . . . . . . . . . . . 35
8.1. Issues Specific to SPF . . . . . . . . . . . . . . . . . 35
8.2. DNS Load and Caching . . . . . . . . . . . . . . . . . . 36
8.3. Rejecting Messages . . . . . . . . . . . . . . . . . . . 36
8.4. Identifier Alignment Considerations . . . . . . . . . . . 37
8.5. Interoperability Issues . . . . . . . . . . . . . . . . . 37
9. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 38
9.1. Authentication-Results Method Registry Update . . . . . . 38
9.2. Authentication-Results Result Registry Update . . . . . . 39
9.3. Feedback Report Header Fields Registry Update . . . . . . 40
9.4. DMARC Tag Registry . . . . . . . . . . . . . . . . . . . 40
9.5. DMARC Report Format Registry . . . . . . . . . . . . . . 42
9.6. Underscored and Globally Scoped DNS Node Names
Registry . . . . . . . . . . . . . . . . . . . . . . . . 43
10. Privacy Considerations . . . . . . . . . . . . . . . . . . . 43
10.1. Aggregate Report Considerations . . . . . . . . . . . . 44
10.2. Failure Report Considerations . . . . . . . . . . . . . 44
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 3]
Internet-Draft DMARCbis November 2022
11. Security Considerations . . . . . . . . . . . . . . . . . . . 44
11.1. Authentication Methods . . . . . . . . . . . . . . . . . 44
11.2. Attacks on Reporting URIs . . . . . . . . . . . . . . . 45
11.3. DNS Security . . . . . . . . . . . . . . . . . . . . . . 45
11.4. Display Name Attacks . . . . . . . . . . . . . . . . . . 46
11.5. External Reporting Addresses . . . . . . . . . . . . . . 46
11.6. Secure Protocols . . . . . . . . . . . . . . . . . . . . 47
11.7. Determination of the Organizational Domain For Relaxed
Alignment . . . . . . . . . . . . . . . . . . . . . . . 47
12. Normative References . . . . . . . . . . . . . . . . . . . . 48
13. Informative References . . . . . . . . . . . . . . . . . . . 50
Appendix A. Technology Considerations . . . . . . . . . . . . . 51
A.1. S/MIME . . . . . . . . . . . . . . . . . . . . . . . . . 51
A.2. Method Exclusion . . . . . . . . . . . . . . . . . . . . 52
A.3. Sender Header Field . . . . . . . . . . . . . . . . . . . 53
A.4. Domain Existence Test . . . . . . . . . . . . . . . . . . 53
A.5. Issues with ADSP in Operation . . . . . . . . . . . . . . 54
A.6. Organizational Domain Discovery Issues . . . . . . . . . 55
A.7. Removal of the "pct" Tag . . . . . . . . . . . . . . . . 56
Appendix B. Examples . . . . . . . . . . . . . . . . . . . . . . 57
B.1. Identifier Alignment Examples . . . . . . . . . . . . . . 57
B.1.1. SPF . . . . . . . . . . . . . . . . . . . . . . . . . 57
B.1.2. DKIM . . . . . . . . . . . . . . . . . . . . . . . . 58
B.2. Domain Owner Example . . . . . . . . . . . . . . . . . . 59
B.2.1. Entire Domain, Monitoring Only . . . . . . . . . . . 59
B.2.2. Entire Domain, Monitoring Only, Per-Message
Reports . . . . . . . . . . . . . . . . . . . . . . . 60
B.2.3. Per-Message Failure Reports Directed to Third
Party . . . . . . . . . . . . . . . . . . . . . . . . 61
B.2.4. Subdomain, Testing, and Multiple Aggregate Report
URIs . . . . . . . . . . . . . . . . . . . . . . . . 62
B.3. Mail Receiver Example . . . . . . . . . . . . . . . . . . 64
B.3.1. SMTP Session Example . . . . . . . . . . . . . . . . 64
B.4. Organizational and Policy Domain Tree Walk Examples . . . 66
B.4.1. Simple Organizational and Policy Example . . . . . . 66
B.4.2. Deep Tree Walk Example . . . . . . . . . . . . . . . 67
B.4.3. Example with a PSD DMARC Record . . . . . . . . . . . 68
B.5. Utilization of Aggregate Feedback: Example . . . . . . . 69
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 70
Acknowledgements - RFC 7489 . . . . . . . . . . . . . . . . . . . 70
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 70
1. Introduction
RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH BEFORE PUBLISHING:
The source for this draft is maintained on GitHub at:
https://github.com/ietf-wg-dmarc/draft-ietf-dmarc-dmarcbis
(https://github.com/ietf-wg-dmarc/draft-ietf-dmarc-dmarcbis)
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 4]
Internet-Draft DMARCbis November 2022
Abusive email often includes unauthorized and deceptive use of a
domain name in the "From" header field defined in Section 3.6.2 of
[RFC5322] and referred to as RFC5322.From. The domain typically
belongs to an organization expected to be known to - and presumably
trusted by - the recipient. The Sender Policy Framework (SPF)
[RFC7208] and DomainKeys Identified Mail (DKIM) [RFC6376] protocols
provide domain-level authentication but are not directly associated
with the RFC5322.From domain. DMARC leverages these two protocols,
providing a method for Domain Owners to publish a DNS record
describing the email authentication policies for the RFC5322.From
domain and to request specific handling for messages using that
domain that fail authentication checks.
As with SPF and DKIM, DMARC reports results as "pass" or "fail". To
get a DMARC result of "pass", a pass from either SPF or DKIM is
required. In addition, the passed domain can be "aligned" with the
RFC5322.From domain in one of two modes - "relaxed" or "strict". The
mode is expressed in the domain's DMARC policy record. Domains are
said to be "in relaxed alignment" if they have the same
"Organizational Domain", which is the domain at the top of the domain
hierarchy for the RFC5322.From domain while having the same
administrative authority as the RFC5322.From domain. Domains are "in
strict alignment" if and only if they are identical.
A DMARC pass indicates only that the RFC5322.From domain has been
authenticated for that message. Authentication does not carry an
explicit or implicit value assertion about that message or about the
Domain Owner. Furthermore, a mail-receiving organization that
performs DMARC verification can choose to honor the Domain Owner's
requested message handling for authentication failures, but it is not
required to do so; it might choose different actions entirely.
For a mail-receiving organization supporting DMARC, a message that
passes verification is part of a message stream reliably associated
with the RFC5322.From field Domain Owner. Therefore, reputation
assessment of that stream by the mail-receiving organization can
assume the use of that domain in the RFC5322.From field is
authorized. A message that fails this verification is not
necessarily associated with the Domain Owner's domain and its
reputation.
DMARC policy records can also cover non-existent sub-domains below
the "Organizational Domain", as well as domains at the top of the
name hierarchy, controlled by Public Suffix Operators (PSOs).
DMARC, in the associated [I-D.ietf-dmarc-aggregate-reporting] and
[I-D.ietf-dmarc-failure-reporting] documents, also specifies a
reporting framework. Using it, a mail-receiving domain can generate
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 5]
Internet-Draft DMARCbis November 2022
regular reports about messages that claim to be from a domain
publishing DMARC policies, sending those reports to the address(es)
specified by the Domain Owner in the latter's DMARC policy record.
Domain Owners can use these reports, especially the aggregate
reports, to identify not only sources of mail attempting to
fraudulently use their domain, but also (and perhaps more
importantly) gaps in their authentication practices. However, as
with honoring the Domain Owner's stated mail handling preference, a
mail-receiving organization supporting DMARC is under no obligation
to send requested reports, although it is recommended that they do
send aggregate reports.
The use of DMARC creates some interoperability challenges that
require due consideration before deployment, particularly with
configurations that can cause mail to be rejected. These are
discussed in Section 8.
2. Requirements
The following high-level goals, security dependencies, detailed
requirements, and items that are documented as out of scope guide
specification of DMARC.
2.1. High-Level Goals
DMARC has the following high-level goals:
* Allow Domain Owners and PSOs to assert their desired message
handling for authentication failures for messages purporting to
have authorship within the domain.
* Allow Domain Owners and PSOs to verify their authentication
deployment.
* Minimize implementation complexity for both senders and receivers,
as well as the impact on handling and delivery of legitimate
messages.
* Reduce the amount of successfully delivered spoofed emails.
* Work at Internet scale.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 6]
Internet-Draft DMARCbis November 2022
2.2. Anti-Phishing
DMARC is designed to prevent bad actors from sending mail that claims
to come from legitimate senders, particularly transactional email
(official mail about business transactions). One of the primary uses
of this kind of spoofed mail is phishing (enticing users to provide
information by pretending to be the legitimate service requesting the
information). Thus, DMARC is significantly informed by ongoing
efforts to enact large-scale, Internet-wide anti-phishing measures.
Although DMARC can only be used to combat specific forms of exact-
domain spoofing directly, the DMARC mechanism has been found to be
useful in the creation of reliable and defensible message streams.
DMARC does not attempt to solve all problems with spoofed or
otherwise fraudulent emails. In particular, it does not address the
use of visually similar domain names ("cousin domains") or abuse of
the RFC5322.From human-readable <display-name>.
2.3. Scalability
Scalability is a significant issue for systems that need to operate
in a system as widely deployed as current SMTP email. For this
reason, DMARC seeks to avoid the need for third parties or pre-
sending agreements between senders and receivers. This preserves the
positive aspects of the current email infrastructure.
Although DMARC does not introduce third-party senders (namely
external agents authorized to send on behalf of an operator) to the
email-handling flow, it also does not preclude them. Such third
parties are free to provide services in conjunction with DMARC.
2.4. Out of Scope
Several topics and issues are specifically out of scope of this work.
These include the following:
* Different treatment of messages that are not authenticated versus
those that fail authentication;
* Evaluation of anything other than RFC5322.From header field;
* Multiple reporting formats;
* Publishing policy other than via the DNS;
* Reporting or otherwise evaluating other than the last-hop IP
address;
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 7]
Internet-Draft DMARCbis November 2022
* Attacks in the display-name portions of the RFC5322.From header
field, also known as "display name" attacks;
* Authentication of entities other than domains, since DMARC is
built upon SPF and DKIM, which authenticate domains; and
* Content analysis.
3. Terminology and Definitions
This section defines terms used in the rest of the document.
3.1. Conventions Used in This Document
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP
14 [RFC2119] and [RFC8174] when, and only when, they appear in all
capitals, as shown here.
Readers are encouraged to be familiar with the contents of [RFC5598].
In particular, that document defines various roles in the messaging
infrastructure that can appear the same or separate in various
contexts. For example, a Domain Owner could, via the messaging
security mechanisms on which DMARC is based, delegate the ability to
send mail as the Domain Owner to a third party with another role.
This document does not address the distinctions among such roles; the
reader is encouraged to become familiar with that material before
continuing.
3.2. Definitions
The following sections define the terms used in this document.
3.2.1. Authenticated Identifiers
Domain-level identifiers that are verified using authentication
technologies are referred to as "Authenticated Identifiers". See
Section 4.3 for details about the supported mechanisms.
3.2.2. Author Domain
The domain name of the apparent author as extracted from the
RFC5322.From header field.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 8]
Internet-Draft DMARCbis November 2022
3.2.3. Domain Owner
An entity or organization that owns a DNS domain. The term "owns"
here indicates that the entity or organization being referenced has
control of that DNS domain, usually by holding its registration.
Domain Owners range from complex, globally distributed organizations
to service providers working on behalf of non-technical clients to
individuals responsible for maintaining personal domains. This
specification uses this term as analogous to an Administrative
Management Domain as defined in [RFC5598]. It can also refer to
delegates, such as Report Consumers when those are outside of their
immediate management domain.
3.2.4. Identifier Alignment
When the domain in the address in the RFC5322.From header field has
the same Organizational Domain as a domain verified by an
Authenticated Identifier, it has Identifier Alignment. (see
Section 3.2.7)
3.2.5. Mail Receiver
The entity or organization that receives and processes email. Mail
Receivers operate one or more Internet-facing Mail Transport Agents
(MTAs).
3.2.6. Non-existent Domains
For DMARC purposes, a non-existent domain is consistent with the
term's meaning as described in [RFC8020]. That is, if the response
code received for a query for a domain name is NXDOMAIN, then the
domain name and all the names under it do not exist.
3.2.7. Organizational Domain
The Organizational Domain for any domain is determined by applying
the algorithm found in Section 4.8.
3.2.8. Public Suffix Domain (PSD)
Some domains allow the registration of subdomains that are "owned" by
independent organizations. Real-world examples of these points are
".com", ".org", ".us", and ".co.uk". These domains are called
"Public Suffix Domains (PSDs)". For example, "ietf.org" is a
registered domain name, and ".org" is its PSD.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 9]
Internet-Draft DMARCbis November 2022
3.2.9. Public Suffix Operator (PSO)
A Public Suffix Operator is an organization that manages operations
within a PSD, particularly the DNS records published for names at and
under that domain name.
3.2.10. PSO Controlled Domain Names
PSO-Controlled Domain Names are names in the DNS that are managed by
a PSO. PSO-controlled Domain Names may have one label (e.g., ".com")
or more (e.g., ".co.uk"), depending on the PSD's policy.
3.2.11. Report Consumer
An operator that receives reports from another operator implementing
the reporting mechanisms described in this document and/or the
documents [I-D.ietf-dmarc-aggregate-reporting] and
[I-D.ietf-dmarc-failure-reporting]. Such an operator might be
receiving reports about messages related to a domain for which it is
the Domain Owner or PSO or reports about messages related to another
operator's domain. This term applies collectively to the system
components that receive and process these reports and the
organizations that operate them.
4. Overview and Key Concepts
This section provides a general overview of the design and operation
of the DMARC environment.
4.1. DMARC Basics
DMARC permits a Domain Owner or PSO to enable verification of a
domain's use in an email message, to indicate the Domain Owner's or
PSO's message handling preference regarding failed verification, and
to request reports about use of the domain name. A domain's DMARC
policy record is published in DNS as a TXT record at the name created
by prepending the label "_dmarc" to the domain name and is retrieved
through normal DNS queries.
DMARC's verification function is based on whether the RFC5322.From
domain is aligned with a domain name used in a supported
authentication mechanism, as described in Section 4.3. When a DMARC
policy exists for the domain name found in the RFC5322.From header
field, and that domain name is not verified through an aligned
supported authentication mechanism, the handling of that message can
be affected based on the DMARC policy when delivered to a
participating Mail Receiver.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 10]
Internet-Draft DMARCbis November 2022
A message satisfies the DMARC checks if at least one of the supported
authentication mechanisms:
1. produces a "pass" result, and
2. produces that result based on an identifier that is in alignment,
as described in Section 4.4.
It is important to note that the authentication mechanisms employed
by DMARC authenticate only a DNS domain. They do not authenticate
the local-part of any email address identifier found in a message,
nor do they validate the legitimacy of message content.
DMARC's feedback component involves the collection of information
about received messages claiming to be from the Author Domain for
periodic aggregate reports to the Domain Owner or PSO. The
parameters and format for such reports are discussed in
[I-D.ietf-dmarc-aggregate-reporting]
A DMARC-enabled Mail Receiver might also generate per-message reports
that contain information related to individual messages that fail
authentication checks. Per-message failure reports are a useful
source of information when debugging deployments (if messages can be
determined to be legitimate even though failing authentication) or in
analyzing attacks. The capability for such services is enabled by
DMARC but defined in other referenced material such as [RFC6591] and
[I-D.ietf-dmarc-failure-reporting]
4.2. Use of RFC5322.From
One of the most obvious points of security scrutiny for DMARC is the
choice to focus on an identifier, namely the RFC5322.From address,
which is part of a body of data that has been trivially forged
throughout the history of email. This field is the one used by end
users to identify the source of the message, and so it has always
been a prime target for abuse through such forgery and other means.
Several points suggest that it is the most correct and safest thing
to do in this context:
* Of all the identifiers that are part of the message itself, this
is the only one required to be present. A message without a
single, properly formed RFC5322.From header field does not comply
with [RFC5322], and handling such a message is outside of the
scope of this specification.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 11]
Internet-Draft DMARCbis November 2022
* It seems the best choice of an identifier on which to focus, as
most MUAs display some or all of the contents of that field in a
manner strongly suggesting those data as reflective of the true
originator of the message.
* Many high-profile email sources, such as email service providers,
require that the sending agent has authenticated itself before
email can be generated. Thus, for these mailboxes, the mechanism
described in this document provides recipient end users with
strong evidence that the message was indeed originated by the
agent they associate with that mailbox, if the end user knows that
these various protections have been provided.
Since the sorts of mail typically protected by DMARC participants
tend only to have single Authors, DMARC participants generally
operate under a slightly restricted profile of RFC5322 with respect
to the expected syntax of this field. See Section 5.7 for details.
4.3. Authentication Mechanisms
The following mechanisms for determining Authenticated Identifiers
are supported in this version of DMARC:
* DKIM, [RFC6376], which provides a domain-level identifier in the
content of the "d=" tag of a verified DKIM-Signature header field.
* SPF, [RFC7208], which can authenticate both the domain found in an
SMTP [RFC5321] HELO/EHLO command (the HELO identity) and the
domain found in an SMTP MAIL command (the MAIL FROM identity). As
noted earlier, however, DMARC relies solely on SPF authentication
of the domain found in SMTP MAIL FROM command. Section 2.4 of
[RFC7208] describes MAIL FROM processing for cases in which the
MAIL command has a null path.
4.4. Identifier Alignment Explained
Email authentication technologies authenticate various (and
disparate) aspects of an individual message. For example, DKIM
[RFC6376] authenticates the domain that affixed a signature to the
message, while SPF [RFC7208] can authenticate either the domain that
appears in the RFC5321.MailFrom (MAIL FROM) portion of an SMTP
[RFC5321] conversation or the RFC5321.EHLO/HELO domain, or both.
These domains may be different and are typically not visible to the
end user.
DMARC authenticates the use of the RFC5322.From domain by requiring
either that it have the same Organizational Domain as an
Authenticated Identifier (a condition known as "relaxed alignment")
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 12]
Internet-Draft DMARCbis November 2022
or that it be identical to the domain of the Authenticated Identifier
(a condition known as "strict alignment"). The choice of relaxed or
strict alignment is left to the Domain Owner and is expressed in the
domain's DMARC policy record. Domain name comparisons in this
context are case-insensitive, per [RFC4343].
It is important to note that Identifier Alignment cannot occur with a
message that is not valid per [RFC5322], particularly one with a
malformed, absent, or repeated RFC5322.From header field, since in
that case there is no reliable way to determine a DMARC policy that
applies to the message. Accordingly, DMARC operation is predicated
on the input being a valid RFC5322 message object. For non-compliant
cases, handling is outside of the scope of this specification.
Further discussion of this can be found in Section 5.7.1.
Each of the underlying authentication technologies that DMARC takes
as input yields authenticated domains as their outputs when they
succeed.
4.4.1. DKIM-Authenticated Identifiers
DMARC requires that Identifier Alignment is applied to the result of
a DKIM authentication because a message can bear a valid signature
from any domain, including domains used by a mailing list or even a
bad actor. Therefore, merely bearing a valid signature is not enough
to infer the authenticity of the Author Domain.
DMARC requires that Identifier Alignment applied to the result of a
DKIM authentication to be strict or relaxed. (Note that these terms
are not related to DKIM's "simple" and "relaxed" canonicalization
modes.)
In relaxed mode, the identifiers are considered to be aligned if the
Organizational Domains of both the DKIM-authenticated signing domain
(taken from the value of the d= tag in the signature) and that of the
RFC5322.From domain are equal. In strict mode, only an exact match
between both Fully Qualified Domain Names (FQDNs) is considered to
produce Identifier Alignment.
To illustrate, in relaxed mode, if a verified DKIM signature
successfully verifies with a "d=" domain of "example.com", and the
RFC5322.From address is "[email protected]", the DKIM "d="
domain and the RFC5322.From domain are considered to be "in
alignment", because both domains have the same Organizational Domain
of "example.com". In strict mode, this test would fail because the
d= domain does not exactly match the RFC5322.From domain.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 13]
Internet-Draft DMARCbis November 2022
However, a DKIM signature bearing a value of "d=com" would never
allow an "in alignment" result, as "com" can only be a Public Suffix
Domain, not an Organizational Domain.
Note that a single email can contain multiple DKIM signatures, and it
is considered to produce a DMARC "pass" result if any DKIM signature
is aligned and verified.
4.4.2. SPF-Authenticated Identifiers
DMARC requires that Identifier Alignment is applied to the result of
an SPF authentication. As with DKIM, Identifier Alignment can be
either strict or relaxed.
In relaxed mode, the identifiers are considered to be aligned if the
Organizational Domains of the SPF-authenticated domain and
RFC5322.From domain are equal. In strict mode, only an exact match
between the two FQDNs is considered to produce Identifier Alignment.
For example, in relaxed mode, if a message passes an SPF check with
an RFC5321.MailFrom domain of "cbg.bounces.example.com", and the
address portion of the RFC5322.From header field contains
"[email protected]", the Authenticated RFC5321.MailFrom domain
identifier and the RFC5322.From domain are considered to be "in
alignment" because they have the same Organizational Domain
("example.com"). In strict mode, this test would fail because the
two domains are not identical.
Note that SPF alignment checks in DMARC rely solely on the
RFC5321.MailFrom domain. This differs from Section 2.3 of [RFC7208],
which recommends that SPF checks be done on not only the "MAIL FROM"
but also on a separate check of the "HELO" identity.
4.4.3. Alignment and Extension Technologies
If in the future DMARC is extended to include the use of other
authentication mechanisms, the extensions will need to allow for
domain identifier extraction so that alignment with the RFC5322.From
domain can be verified.
4.5. Flow Diagram
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 14]
Internet-Draft DMARCbis November 2022
+---------------+ +--------------------+
| Author Domain |< . . . . . . . . . . . . | Return-Path Domain |
+---------------+ . +--------------------+
| . ^
V V .
+-----------+ +--------+ +----------+ v
| MSA |<***>| DKIM | | DMARC | +----------+
| Service | | Signer | | Verifier |<***>| SPF |
+-----------+ +--------+ +----------+ * | Verifier |
| ^ * +----------+
| * *
V v *
+------+ (~~~~~~~~~~~~) +------+ * +----------+
| sMTA |------->( other MTAs )----->| rMTA | **>| DKIM |
+------+ (~~~~~~~~~~~~) +------+ | Verifier |
| +----------+
| ^
V .
+-----------+ .
+---------+ | MDA | v
| User |<--| Filtering | +-----------+
| Mailbox | | Engine | | DKIM |
+---------+ +-----------+ | Signing |
| Domain(s) |
+-----------+
MSA = Mail Submission Agent
MDA = Mail Delivery Agent
The above diagram shows a simple flow of messages through a DMARC-
aware system. Solid lines denote the actual message flow, dotted
lines involve DNS queries used to retrieve message policy related to
the supported message authentication schemes, and asterisk lines
indicate data exchange between message-handling modules and message
authentication modules. "sMTA" is the sending MTA, and "rMTA" is the
receiving MTA.
Put simply, when a message reaches a DMARC-aware rMTA, a DNS query
will be initiated to determine if a DMARC policy exists that applies
to the author domain. If a policy is found, the rMTA will use the
results of SPF and DKIM verification checks to determine the ultimate
DMARC authentication status. The DMARC status can then factor into
the message handling decision made by the recipient's mail system.
More details on specific actions for the parties involved can be
found in Section 5.5 and Section 5.7.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 15]
Internet-Draft DMARCbis November 2022
4.6. DNS Tree Walk
The DMARC protocol defines a method for communicating information
through the publishing of records in DNS. Both the content of the
records and their location in the DNS hierarchy are used for two
purposes: policy discovery (see Section 4.7) and Organizational
Domain determination (see Section 4.8).
The relevant DMARC record for these purposes is not necessarily the
DMARC policy record found in DNS at the same level as the name label
for the domain in question. Instead, some domains will inherit their
DMARC policy records from parent domains one level or more above them
in the DNS hierarchy. Similarly, the Organizational Domain may be
found at a higher level in the DNS hierarchy.
These records are discovered through the technique described here,
known colloquially as the "DNS Tree Walk". The target of any DNS
Tree Walk is a valid DMARC policy record, but the rules defining
required content for that record depend on the reason for performing
the Tree Walk.
To prevent possible abuse of the DNS, a shortcut is built into the
process so that domains that have more than five labels do not result
in more than five DNS queries.
The generic steps for a DNS Tree Walk are as follows:
1. Query the DNS for a DMARC TXT record at the appropriate starting
point for the Tree Walk. A possibly empty set of records is
returned.
2. Records that do not start with a "v=" tag that identifies the
current version of DMARC are discarded. If multiple DMARC
records are returned, they are all discarded. If a single record
remains and it contains a "psd=n" tag, stop.
3. Determine the target for additional queries (if needed; see the
note in Section 4.8), using steps 4 through 8 below.
4. Break the subject DNS domain name into a set of ordered labels.
Assign the count of labels to "x", and number the labels from
right to left; e.g., for "a.mail.example.com", "x" would be
assigned the value 4, "com" would be label 1, "example" would be
label 2, "mail" would be label 3, and so forth.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 16]
Internet-Draft DMARCbis November 2022
5. If x < 5, remove the left-most (highest-numbered) label from the
subject domain. If x >= 5, remove the left-most (highest-
numbered) labels from the subject domain until 4 labels remain.
The resulting DNS domain name is the new target for the next
lookup.
6. Query the DNS for a DMARC TXT record at the DNS domain name
matching this new target. A possibly empty set of records is
returned.
7. Records that do not start with a "v=" tag that identifies the
current version of DMARC are discarded. If multiple DMARC
records are returned for a single target, they are all discarded.
If a single record remains and it contains a "psd=n" or "psd=y"
tag, stop.
8. Determine the target for additional queries by removing a single
label from the target domain as described in step 5 and repeating
steps 6 and 7 until the process stops or there are no more labels
remaining.
To illustrate, for a message with the arbitrary RFC5322.From domain
of "a.b.c.d.e.mail.example.com", a full DNS Tree Walk would require
the following five queries to locate the policy or Organizational
Domain:
* _dmarc.a.b.c.d.e.mail.example.com
* _dmarc.e.mail.example.com
* _dmarc.mail.example.com
* _dmarc.example.com
* _dmarc.com
4.7. DMARC Policy Discovery
For policy discovery, a DNS Tree Walk starts at the domain found in
the RFC5322.From header of the message being evaluated. The DMARC
policy to be applied to the message will be the record found at of
the following locations, listed from highest preference to lowest:
* The domain name found in the RFC5322.From header
* The Organizational Domain (as determined by a separate DNS Tree
Walk) of the RFC5322.From domain.
* The Public Suffix Domain of the RFC5322.From domain.
If the DMARC policy to be applied is that of the RFC5322.From domain,
then the DMARC policy is taken from the p= tag of the record.
Herr (ed) & Levine (ed) Expires 13 May 2023 [Page 17]
Internet-Draft DMARCbis November 2022
If the DMARC policy to be applied is that of either the
Organizational Domain or the Public Suffix Domain and that domain is
different than the RFC5322.From domain, then the DMARC policy is
taken from the sp= tag (if any) if the RFC5322.From domain exists,
and the np= tag (if any) if the RFC5322.From domain does not exist.
In the absence of applicable sp= or np= tags, the p= tag policy is
used for subdomains.
If a retrieved policy record does not contain a valid "p" tag, or
contains an "sp" or "np" tag that is not valid, then:
* If a "rua" tag is present and contains at least one syntactically
valid reporting URI, the Mail Receiver MUST act as if a record
containing "p=none" was retrieved and continue processing;
* Otherwise, the Mail Receiver applies no DMARC processing to this
message.
If the set produced by the DNS Tree Walk contains no DMARC policy
record (i.e., any indication that there is no such record as opposed
to a transient DNS error), Mail Receivers MUST NOT apply the DMARC
mechanism to the message.
Handling of DNS errors when querying for the DMARC policy record is
left to the discretion of the Mail Receiver. For example, to ensure
minimal disruption of mail flow, transient errors could result in
delivery of the message ("fail open"), or they could result in the
message being temporarily rejected (i.e., an SMTP 4yx reply), which
invites the sending MTA to try again after the condition has possibly
cleared, allowing a definite DMARC conclusion to be reached ("fail
closed").
Note: PSD policy is not used for Organizational Domains that have
published a DMARC policy. Specifically, this is not a mechanism to
provide feedback addresses (rua/ruf) when an Organizational Domain
has declined to do so.
4.8. Organizational Domain Discovery
For Organizational Domain discovery, it may be necessary to perform
multiple DNS Tree Walks to determine if any two domains are in
alignment. This means that a DNS Tree Walk to discover an
Organizational Domain might start at any of the following locations: