DKIM result can be invalid
This commit is contained in:
parent
dccf75b238
commit
164b2a98ab
2 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue