Compare commits

..

4 commits

Author SHA1 Message Date
c1a5befe8f Report BIMI issues
Some checks are pending
continuous-integration/drone/push Build is running
2025-10-30 14:06:28 +07:00
611244205f Don't consider mailto as suspiscious, search domain alignment 2025-10-30 13:45:29 +07:00
a3a315bea2 Add info title on non-standard authentication tests
All checks were successful
continuous-integration/drone/push Build is passing
2025-10-30 13:11:58 +07:00
e3bb105c2b Report invalid records in summary
All checks were successful
continuous-integration/drone/push Build is passing
2025-10-30 12:59:37 +07:00

View file

@ -131,22 +131,14 @@
}
// SPF DNS record check
const spfRecords = report.dns_results?.spf_records;
if (spfRecords && spfRecords.length > 0) {
const invalidSpfRecords = spfRecords.filter((r) => !r.valid && r.record);
if (invalidSpfRecords.length > 0) {
segments.push({ text: ". Your SPF record" });
if (invalidSpfRecords.length > 1) {
segments.push({ text: "s are " });
} else {
segments.push({ text: " is " });
}
segments.push({
text: "invalid",
highlight: { color: "danger", bold: true },
link: "#dns-spf",
});
}
const spfRecord = report.dns_results?.spf_record;
if (spfRecord && !spfRecord.valid && spfRecord.record) {
segments.push({ text: ". Your SPF record is " });
segments.push({
text: "invalid",
highlight: { color: "danger", bold: true },
link: "#dns-spf",
});
}
// IP Reverse DNS (iprev) check