From 547f35d41f14f245f83ed3ee77b4911cb8d609f3 Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Sat, 19 Oct 2019 19:14:17 +0300 Subject: [PATCH] check/dkim: Use dkim=permerror instead of dkim=policy. --- check/dkim/dkim.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/check/dkim/dkim.go b/check/dkim/dkim.go index f97a499..1e21cff 100644 --- a/check/dkim/dkim.go +++ b/check/dkim/dkim.go @@ -158,13 +158,13 @@ func (d dkimCheckState) CheckBody(header textproto.Header, body buffer.Buffer) m // Brace-enclosed strings are comments that are allowed in Authentication-Results // field. Since go-msgauth does not allow us to insert them explicitly, we // "smuggle" them in Value field that then gets copied into resulting field - // giving us "dkim=policy (some header fields are not signed)" which is what we want. - val = authres.ResultPolicy + " (some header fields are not signed)" + // giving us "dkim=permerror (some header fields are not signed)" which is what we want. + val = authres.ResultPermError + " (some header fields are not signed)" } } if verif.BodyLength >= 0 && !d.c.allowBodySubset { - val = authres.ResultPolicy + " (body limit it used)" + val = authres.ResultPermError + " (body limit it used)" } res.AuthResult = append(res.AuthResult, &authres.DKIMResult{