dmarc

package
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 22, 2023 License: MIT Imports: 15 Imported by: 1

Documentation

Overview

Package dmarc implements DMARC (Domain-based Message Authentication, Reporting, and Conformance; RFC 7489) verification.

DMARC is a mechanism for verifying ("authenticating") the address in the "From" message header, since users will look at that header to identify the sender of a message. DMARC compares the "From"-(sub)domain against the SPF and/or DKIM-validated domains, based on the DMARC policy that a domain has published in DNS as TXT record under "_dmarc.<domain>". A DMARC policy can also ask for feedback about evaluations by other email servers, for monitoring/debugging problems with email delivery.

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrNoRecord        = errors.New("dmarc: no dmarc dns record")
	ErrMultipleRecords = errors.New("dmarc: multiple dmarc dns records") // Must also be treated as if domain does not implement DMARC.
	ErrDNS             = errors.New("dmarc: dns lookup")
	ErrSyntax          = errors.New("dmarc: malformed dmarc dns record")
)

Lookup errors.

View Source
var DefaultRecord = Record{
	Version:                    "DMARC1",
	ADKIM:                      "r",
	ASPF:                       "r",
	AggregateReportingInterval: 86400,
	FailureReportingOptions:    []string{"0"},
	ReportingFormat:            []string{"afrf"},
	Percentage:                 100,
}

DefaultRecord holds the defaults for a DMARC record.

Functions

func Lookup

func Lookup(ctx context.Context, resolver dns.Resolver, from dns.Domain) (status Status, domain dns.Domain, record *Record, txt string, rauthentic bool, rerr error)

Lookup looks up the DMARC TXT record at "_dmarc.<domain>" for the domain in the "From"-header of a message.

If no DMARC record is found for the "From"-domain, another lookup is done at the organizational domain of the domain (if different). The organizational domain is determined using the public suffix list. E.g. for "sub.example.com", the organizational domain is "example.com". The returned domain is the domain with the DMARC record.

rauthentic indicates if the DNS results were DNSSEC-verified.

func LookupExternalReportsAccepted added in v0.0.7

func LookupExternalReportsAccepted(ctx context.Context, resolver dns.Resolver, dmarcDomain dns.Domain, extDestDomain dns.Domain) (accepts bool, status Status, records []*Record, txts []string, authentic bool, rerr error)

LookupExternalReportsAccepted returns whether the extDestDomain has opted in to receiving dmarc reports for dmarcDomain (where the dmarc record was found), through a "._report._dmarc." DNS TXT DMARC record.

accepts is true if the external domain has opted in. If a temporary error occurred, the returned status is StatusTemperror, and a later retry may give an authoritative result. The returned error is ErrNoRecord if no opt-in DNS record exists, which is not a failure condition.

The normally invalid "v=DMARC1" record is accepted since it is used as example in RFC 7489.

authentic indicates if the DNS results were DNSSEC-verified.

Types

type Align

type Align string

Align specifies the required alignment of a domain name.

const (
	AlignStrict  Align = "s" // Strict requires an exact domain name match.
	AlignRelaxed Align = "r" // Relaxed requires either an exact or subdomain name match.
)

type DMARCPolicy

type DMARCPolicy string

Policy as used in DMARC DNS record for "p=" or "sp=".

const (
	PolicyEmpty      DMARCPolicy = "" // Only for the optional Record.SubdomainPolicy.
	PolicyNone       DMARCPolicy = "none"
	PolicyQuarantine DMARCPolicy = "quarantine"
	PolicyReject     DMARCPolicy = "reject"
)

type Record

type Record struct {
	Version                    string      // "v=DMARC1"
	Policy                     DMARCPolicy // Required, for "p=".
	SubdomainPolicy            DMARCPolicy // Like policy but for subdomains. Optional, for "sp=".
	AggregateReportAddresses   []URI       // Optional, for "rua=".
	FailureReportAddresses     []URI       // Optional, for "ruf="
	ADKIM                      Align       // "r" (default) for relaxed or "s" for simple. For "adkim=".
	ASPF                       Align       // "r" (default) for relaxed or "s" for simple. For "aspf=".
	AggregateReportingInterval int         // Default 86400. For "ri="
	FailureReportingOptions    []string    // "0" (default), "1", "d", "s". For "fo=".
	ReportingFormat            []string    // "afrf" (default). Ffor "rf=".
	Percentage                 int         // Between 0 and 100, default 100. For "pct=".
}

Record is a DNS policy or reporting record.

Example:

v=DMARC1; p=reject; rua=mailto:postmaster@mox.example

func ParseRecord

func ParseRecord(s string) (record *Record, isdmarc bool, rerr error)

ParseRecord parses a DMARC TXT record.

Fields and values are are case-insensitive in DMARC are returned in lower case for easy comparison.

DefaultRecord provides default values for tags not present in s.

func ParseRecordNoRequired added in v0.0.7

func ParseRecordNoRequired(s string) (record *Record, isdmarc bool, rerr error)

ParseRecordNoRequired is like ParseRecord, but don't check for required fields for regular DMARC records. Useful for checking the _report._dmarc record.

func (Record) String

func (r Record) String() string

String returns the DMARC record for use as DNS TXT record.

type Result

type Result struct {
	// Whether to reject the message based on policies. If false, the message should
	// not necessarily be accepted, e.g. due to reputation or content-based analysis.
	Reject bool
	// Result of DMARC validation. A message can fail validation, but still
	// not be rejected, e.g. if the policy is "none".
	Status          Status
	AlignedSPFPass  bool
	AlignedDKIMPass bool
	// Domain with the DMARC DNS record. May be the organizational domain instead of
	// the domain in the From-header.
	Domain dns.Domain
	// Parsed DMARC record.
	Record *Record
	// Whether DMARC DNS response was DNSSEC-signed, regardless of whether SPF/DKIM records were DNSSEC-signed.
	RecordAuthentic bool
	// Details about possible error condition, e.g. when parsing the DMARC record failed.
	Err error
}

Result is a DMARC policy evaluation.

func Verify

func Verify(ctx context.Context, resolver dns.Resolver, from dns.Domain, dkimResults []dkim.Result, spfResult spf.Status, spfIdentity *dns.Domain, applyRandomPercentage bool) (useResult bool, result Result)

Verify evaluates the DMARC policy for the domain in the From-header of a message given the DKIM and SPF evaluation results.

applyRandomPercentage determines whether the records "pct" is honored. This field specifies the percentage of messages the DMARC policy is applied to. It is used for slow rollout of DMARC policies and should be honored during normal email processing

Verify always returns the result of verifying the DMARC policy against the message (for inclusion in Authentication-Result headers).

useResult indicates if the result should be applied in a policy decision.

type Status

type Status string

Status is the result of DMARC policy evaluation, for use in an Authentication-Results header.

const (
	StatusNone      Status = "none"      // No DMARC TXT DNS record found.
	StatusPass      Status = "pass"      // SPF and/or DKIM pass with identifier alignment.
	StatusFail      Status = "fail"      // Either both SPF and DKIM failed or identifier did not align with a pass.
	StatusTemperror Status = "temperror" // Typically a DNS lookup. A later attempt may results in a conclusion.
	StatusPermerror Status = "permerror" // Typically a malformed DMARC DNS record.
)

type URI

type URI struct {
	Address string // Should start with "mailto:".
	MaxSize uint64 // Optional maximum message size, subject to Unit.
	Unit    string // "" (b), "k", "m", "g", "t" (case insensitive), unit size, where k is 2^10 etc.
}

URI is a destination address for reporting.

func (URI) String

func (u URI) String() string

String returns a string representation of the URI for inclusion in a DMARC record.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL