We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I notice a lot of spammers are using throwaway subdomains on the same TLD, so something like:
bad1.spam.cc bad2.spam.cc
The problem there is we have to update the list every time, instead of just blocking spam.cc in the email checker list we have setup...
The text was updated successfully, but these errors were encountered:
Perhaps something like this?
`function strposa($haystack, $needle, $offset=0) {
if(!is_array($needle)) $needle = array($needle); foreach($needle as $query) { if(strpos($haystack, $query, $offset) !== false) return true; // stop on first true result } return false;
}`
from https://stackoverflow.com/questions/6284553/using-an-array-as-needles-in-strpos
Sorry, something went wrong.
No branches or pull requests
I notice a lot of spammers are using throwaway subdomains on the same TLD, so something like:
bad1.spam.cc
bad2.spam.cc
The problem there is we have to update the list every time, instead of just blocking spam.cc in the email checker list we have setup...
The text was updated successfully, but these errors were encountered: