-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My IP keeps getting temporarily blocked #8
Comments
Yes, there are ways (multiple), but that will not solve your original problem (and that'd be you talking too much to a server that doesn't want to talk back as much -- I'd suggest you start respecting the server's wishes instead of trying to "outsmart" it). But, as far as code is concerned, you could probably get something going with some sort of SOCKS5 library/wrapper that'll handle the proxy connection and then rewriting/adapting certain portions of SMTP_Validate_Email to use the aforementioned connection resource to send the required commands (and get the responses). I currently don't have the time to do it. |
Are you available for hire? |
I'm fully booked, sorry. Github traffic graphs do show an increase in visits from elance.com: So, good luck! |
Is there any other way to validated 10K+ emails using your class without my IP being blacklisted? |
|
5, 6, 7. That's what I'm trying to avoid: pay for the job I can do by myself. The only thing I want to leave for some paid third-party service to do is to check them for hygiene. What I've recently ended up with is to send HELO command instead of EHLO and use TLDs that seem not to reveal my ip in headers. What I'm concerned about for the moment is if this method would give equally accurate results as it did before. BTW, thank you very much for the class, it rocks! Saved me bunch of time. |
Glad you found it useful. Generally speaking, having a properly configured server (ideally more than one) on a "reputable" IP (or at least one with no bad blacklist history) goes a long way in terms of being able to talk to other servers. I don't see a way of doing "enterprise-scale" bulk validation (without ending up blacklisted) other than distributing your checks over a bunch of different machines/IPs + slowing down to avoid "spikey" traffic pattern filters + maybe some kind of proxy shenanigans (spitballin'). Perhaps others have more ideas and/or different experiences. |
Well, it seems reasonable. Anyway, thank you very much for your help, appreciate it. |
Here a posible solution. Its work for me:
|
Is there any way to run smtp-validate-email from behind proxys?
The text was updated successfully, but these errors were encountered: