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:
|
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:
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue