From e4e36ff90c0e688b39b1f581b85b28b4cb980786 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 27 Mar 2023 12:11:59 +0200 Subject: [PATCH] make it clear it is the flipped IP --- src/mail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mail.js b/src/mail.js index 9ecad0f32..85e52038c 100644 --- a/src/mail.js +++ b/src/mail.js @@ -527,7 +527,7 @@ async function checkRblStatus(domain) { const [error, records] = await safe(dig.resolve(flippedIp + '.' + rblServer.dns, 'A', DNS_OPTIONS)); if (error || !records) continue; // not listed - debug(`checkRblStatus: ${domain} (ip: ${flippedIp}) is in the blacklist of ${JSON.stringify(rblServer)}`); + debug(`checkRblStatus: ${domain} (flippedIp: ${flippedIp}) is in the blacklist of ${JSON.stringify(rblServer)}`); const result = _.extend({ }, rblServer);