David Harris's Technology Blog

ColdFusion, Flex, and other stuff...   (and 357,345 hours, 26 mins in to my plan for global domination)

Search:

Calendar:

Sun Mon Tue Wed Thu Fri Sat
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    

Subscribe:

Enter your email address to subscribe to this blog.

Archives By Subject:

Tags:

action script adobe air ajax cfug coldfusion flash flex frameworks free software fxug general jpgmetadatareader mac off topic opensource papervision spry

Recent Entries:

No recent entries.

Top Posts:

Recent Comments:

Top Commenters:

My Links:

RSS:


Protecting my Email - does this work?

In the wonderful world of spam, there are programs that surf the web looking for email addresses. (so I've been told. Can't say I've met one yet)

When looking round blogs, I seen a few tricks by people to protect their inbox from spam with tricks like this:

- someone [at] somewhere [dot] com

- someone [you know what goes here] somewhere.com

- Have a form (with or with out captcha) to send the email, thus not showing the address in plain text at all

One attempt that I saw, that I liked was this:

- djohnsmarie@gmail.com

Now, you're seeing my email right?

If you did a view source, you would see this:

djohnsmarie@gmail.com

While that doesn't look like an email, the visitors to my site will see me email. This is the HTML coded version of an ASCII character.

The question I have is: Does that actually fool a Find-and-record-emails-Spam-bot?

While I'd like to *think* it does, does anyone *know* if my attempt at protecting my email inbox will work, or if that attempt is futile?

(Even if it doesn't, at worst I'll be giving GMail's spam filtering a bit more of a work out!)

In case you are interested, the CF Code to generate that is (taken from my CFEclipse ScribblePad):

<cfset email = "[email address here]">
<p>
<cfloop from="1" to="#len(email)#" index="iCount"><cfoutput>&###asc( mid(email, iCount, 1) )#;</cfoutput></cfloop>
</p>

Comments
After asking Mr Google to search for "djohnsmarie@gmail.com", I suspect this method doesn't work!
I guess if he can find it, his evil cousins will be able to too!
# Posted By David | 4/18/07 10:42 AM