DKIM result can be invalid

This commit is contained in:
nemunaire 2025-10-30 10:08:53 +07:00
commit 164b2a98ab
2 changed files with 3 additions and 1 deletions

View file

@ -694,7 +694,7 @@ components:
properties: properties:
result: result:
type: string type: string
enum: [pass, fail, none, neutral, softfail, temperror, permerror, declined] enum: [pass, fail, invalid, missing, none, neutral, softfail, temperror, permerror, declined]
description: Authentication result description: Authentication result
example: "pass" example: "pass"
domain: domain:

View file

@ -19,6 +19,7 @@
return "text-success"; return "text-success";
case "fail": case "fail":
case "missing": case "missing":
case "invalid":
return "text-danger"; return "text-danger";
case "softfail": case "softfail":
case "neutral": case "neutral":
@ -40,6 +41,7 @@
return "bi-x-circle-fill"; return "bi-x-circle-fill";
case "softfail": case "softfail":
case "neutral": case "neutral":
case "invalid":
return "bi-exclamation-circle-fill"; return "bi-exclamation-circle-fill";
case "missing": case "missing":
return "bi-dash-circle-fill"; return "bi-dash-circle-fill";