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:
result:
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
example: "pass"
domain:

View file

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