diff --git a/src/mail.js b/src/mail.js index 1e6fa5019..0e7fe68d5 100644 --- a/src/mail.js +++ b/src/mail.js @@ -416,7 +416,8 @@ async function checkPtr6(mailFqdn) { return ptr; } if (ip === null) { - ptr.errorMessage = 'Server has no IPv6'; + ptr.status = true; + ptr.expected = 'Check skipped, server has no IPv6'; return ptr; } @@ -469,7 +470,8 @@ async function checkPtr4(mailFqdn) { return ptr; } if (ip === null) { - ptr.errorMessage = 'Server has no IPv4'; + ptr.status = true; + ptr.expected = 'Check skipped, server has no IPv4'; return ptr; }