-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmarc.go
117 lines (96 loc) · 2.79 KB
/
dmarc.go
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
// Code generated by xgen. DO NOT EDIT.
package main
import (
"encoding/xml"
)
// DateRangeType ...
type DateRangeType struct {
Begin int `xml:"begin"`
End int `xml:"end"`
}
// ReportMetadataType ...
type ReportMetadataType struct {
Orgname string `xml:"org_name"`
Email string `xml:"email"`
Extracontactinfo string `xml:"extra_contact_info"`
Reportid string `xml:"report_id"`
Daterange *DateRangeType `xml:"date_range"`
Error []string `xml:"error"`
}
// AlignmentType ...
type AlignmentType string
// DispositionType ...
type DispositionType string
// PolicyPublishedType ...
type PolicyPublishedType struct {
Domain string `xml:"domain"`
Adkim string `xml:"adkim"`
Aspf string `xml:"aspf"`
P string `xml:"p"`
Sp string `xml:"sp"`
Pct int `xml:"pct"`
}
// DMARCResultType ...
type DMARCResultType string
// PolicyOverrideType ...
type PolicyOverrideType string
// PolicyOverrideReason ...
type PolicyOverrideReason struct {
Type string `xml:"type"`
Comment string `xml:"comment"`
}
// PolicyEvaluatedType ...
type PolicyEvaluatedType struct {
Disposition string `xml:"disposition"`
Dkim string `xml:"dkim"`
Spf string `xml:"spf"`
Reason []*PolicyOverrideReason `xml:"reason"`
}
// IPAddress ...
type IPAddress string
// RowType ...
type RowType struct {
Sourceip string `xml:"source_ip"`
Count int `xml:"count"`
Policyevaluated *PolicyEvaluatedType `xml:"policy_evaluated"`
}
// IdentifierType ...
type IdentifierType struct {
Envelopeto string `xml:"envelope_to"`
Headerfrom string `xml:"header_from"`
}
// DKIMResultType ...
type DKIMResultType string
// DKIMAuthResultType ...
type DKIMAuthResultType struct {
Domain string `xml:"domain"`
Selector string `xml:"selector"`
Result string `xml:"result"`
Humanresult string `xml:"human_result"`
}
// SPFResultType ...
type SPFResultType string
// SPFAuthResultType ...
type SPFAuthResultType struct {
Domain string `xml:"domain"`
Result string `xml:"result"`
}
// AuthResultType ...
type AuthResultType struct {
Dkim []*DKIMAuthResultType `xml:"dkim"`
Spf []*SPFAuthResultType `xml:"spf"`
}
// RecordType ...
type RecordType struct {
XMLName xml.Name `xml:"record"` // manually added
Row *RowType `xml:"row"`
Identifiers *IdentifierType `xml:"identifiers"`
Authresults *AuthResultType `xml:"auth_results"`
}
// Feedback ...
type Feedback struct {
XMLName xml.Name `xml:"feedback"`
Reportmetadata *ReportMetadataType `xml:"report_metadata"`
Policypublished *PolicyPublishedType `xml:"policy_published"`
Record []*RecordType `xml:"record"`
}