|
|
|
|
|
by badmonster
421 days ago
|
|
How does Email Sleuth handle potential issues with spam filters or anti-spam protocols when performing the SMTP verification (MX + RCPT TO), and does it have any strategies for mitigating false positives or inaccurate verification results? |
|
Catch all domains is a major source of inaccuracy. The verify_smtp_email function includes a basic catch-all detection heuristic. If the initial RCPT TO for the target email succeeds (2xx), it then tries RCPT TO with a randomly generated, likely non-existent email address at the same domain (e.g., no-reply-does-not-exist-123456@domain.com). If this also succeeds, it flags the original result as inconclusive_retry with a message indicating a "Possible Catch-All". This isn't foolproof (some servers might have smarter catch-all filters), but it's a common technique.