Eerie lack of spam...

RJM62

Touchdown! Greaser!
Joined
Jun 15, 2007
Messages
13,157
Location
Upstate New York
Display Name

Display name:
Geek on the Hill
Has anyone else noticed an eerie lack of spam today from about 14:00 Zulu on?

Rich
 
NSA has spam blockers on their system....nothing to worry about.
 
Alibaba perhaps?
 
You mean there's only Big Iron in the air now?
 
All I know is that my mail servers are dealing with a significantly lower amount of overall spam, and almost none of it is getting through. I had one semi-spammy email this morning to one of my webmaster@ accounts, but it was hand-written by someone who actually read or clicked the JavaScript mailto link from a browser. (Spambots can't scrape the address from the JS.)

Just as an aside, the old, simple JS to do this still works amazingly well, considering how ubiquitous it is. The bots still can't figure it out:

Code:
<script language="JavaScript">
    <!--
    var name = "user";
    var domain = "domain.tld";
    document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
    document.write(name + '@' + domain + '</a>');
    // -->
</script>
Where "user" and "domain.tld" are replaced by the actual email address information. It's a good way to make the email address both visible and clickable while still preventing it from being scraped. The second document.write can also be changed to some other visible thing like "click here" or "email us," etc. I'm amazed that it still works after all these years.

Rich
 
Last edited:
Back
Top