mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
check/dkim: Use dkim=permerror instead of dkim=policy.
This commit is contained in:
parent
ab1fdac45d
commit
547f35d41f
1 changed files with 3 additions and 3 deletions
|
@ -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
|
// Brace-enclosed strings are comments that are allowed in Authentication-Results
|
||||||
// field. Since go-msgauth does not allow us to insert them explicitly, we
|
// 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
|
// "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.
|
// giving us "dkim=permerror (some header fields are not signed)" which is what we want.
|
||||||
val = authres.ResultPolicy + " (some header fields are not signed)"
|
val = authres.ResultPermError + " (some header fields are not signed)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if verif.BodyLength >= 0 && !d.c.allowBodySubset {
|
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{
|
res.AuthResult = append(res.AuthResult, &authres.DKIMResult{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue