@koduhai/dmarc-parser
    Preparing search index...

    Interface DmarcReportMeta

    interface DmarcReportMeta {
        dateBegin: Date;
        dateEnd: Date;
        domain: string;
        errors: string[];
        orgName: string;
        policyAdkim: string | null;
        policyAspf: string | null;
        policyFo: string | null;
        policyNp: string | null;
        policyP: string | null;
        policyPct: number | null;
        policySp: string | null;
        reportId: string;
    }
    Index

    Properties

    dateBegin: Date

    Start of the report window.

    dateEnd: Date

    End of the report window.

    domain: string

    The domain the published policy applies to.

    errors: string[]

    Any <error> entries the reporter included in report_metadata.

    orgName: string

    Reporting organization, e.g. "google.com".

    policyAdkim: string | null

    DKIM alignment mode: "r" (relaxed) | "s" (strict), or null.

    policyAspf: string | null

    SPF alignment mode: "r" (relaxed) | "s" (strict), or null.

    policyFo: string | null

    Failure-reporting options requested by the policy, or null.

    policyNp: string | null

    Policy for non-existent subdomains, or null.

    policyP: string | null

    Published policy: "none" | "quarantine" | "reject" (or null if absent).

    policyPct: number | null

    Percentage of mail the policy was applied to (0-100), or null.

    policySp: string | null

    Subdomain policy: "none" | "quarantine" | "reject" (or null if absent).

    reportId: string

    The report's unique id (used for idempotent ingestion).