AfterShip / email-verifier

:white_check_mark: A Go library for email verification without sending any emails.
MIT License
1.18k stars 149 forks source link

Making catchAll detection optional #75

Closed lguminski closed 1 year ago

lguminski commented 1 year ago

The catchAll detection relies on checking the response to a randomly generated email. Effectively it doubles the number of checks, which for batch processing is a problem, as it increases the chance of being blacklisted.

So it would be nice to perform catchAll detection once and then run the entire batch without it. For that it would be nice to have DisableCatchAllCheck() functional switch.

PR follows