vote up 4 vote down star
2

I'm creating a homepage which contains a page to contact people involved in this organisation.

In order to prevent spammers from collecting the e-mail addresses, I figured I'd have to do one of those things:

  • Allow contact only through a web form. I don't like this because it could prevent some people from using it, because they don't like web forms.
  • Create a javascript which creates the addresses when they are clicked.

This looks as follows:

function mailMe(name, domain, top) {
    window.location.href = encodeURI("mailto:" + name + "@" + domain + "." + top);
}

This approach has the disadvantage of excluding people who have javascript disabled.

  • The third approach would be to combine the two approaches to have a fallback possibility for those without javascript.

What do you think? Is there a better alternative than those I've thought of?

flag

closed as exact duplicate by nickf Dec 22 '08 at 15:07

8 Answers

vote up 5 vote down check

As far as linking goes I don't think there is any way to allow users without javascript a link that doesnn't get reckognized by bots.
Visually you could use something like:

<div id='email' onclick="mailMe('user', 'domain', 'com')">
   <div style="float:right; margin:0px;">.com</div>
   <div style="float:right; margin:0px;">@domain</div>
   <div style="float:right; margin:0px;">user</div>
</div>

EDIT
This will also allow to user to copy the emailadress into their email-service.

link|flag
1  
I'm afraid that bots simply strip all html tags from a website before searching for addresses. Is this fear justified? – gs Nov 22 '08 at 17:51
If they strip the tags the email-adress is in your HTML backwards (.com@domainuser) that's why I used the float:right; (try it, you'll see that the adress gets displayed properly) – Pim Jager Nov 22 '08 at 18:10
That's clever, I didn't see it. :) – gs Nov 22 '08 at 18:26
vote up 5 vote down

Duplicate of What are some ways to protect emails on websites from spambots?...

A very common question/concern.

link|flag
Thanks, I haven't found that one. :) – gs Nov 22 '08 at 18:56
vote up 3 vote down

One technique I liked is using inline css to break up the email to many parts. With some creativity you can find even more clever tricks I think, like using some absolute positioning to shuffle char or typing it reversed.

Of course determined people can overcome every obfuscation but there are many lower hanging fruits that it is not worth extra effort trying to farm every site. And, since there is no other way to write a language other than left-to right most spammers won't bother interpreting css.

I found the site where I see it: http://friendlybit.com/css/reverse-text-with-css-32-very-special-hex-digits/

Here is the example:

<p style="direction: rtl; unicode-bidi: bidi-override">
link|flag
Very clever! And I was surprised, but it even works in IE6... :-) – PhiLho Nov 22 '08 at 18:44
vote up 2 vote down

Recaptcha Mailhide makes this easy (and fairly secure).

link|flag
vote up 1 vote down

Two quick thoughts,

  1. I would ROT13 or do a simple Caeser Cipher on the names and domain just to make things a tiny bit more difficult on BOT to decode.
  2. You could display the names in a graphic (assuming of course you have some kind of dynamic scripting language on the backend) that activates the javascript when clicked. This will at least let the person type the email address.

Kris

link|flag
Using ROT13 isn't any safer because in both cases the bot would only have to execute the javascript. But I like your second idea... (maybe hiding those images from people with javascript activated) – gs Nov 22 '08 at 17:53
vote up 1 vote down

You have a lot op options sumarized for you in that 'hidden email page'

For example, a possible alternative would be to Hide email address with CSS

link|flag
vote up 0 vote down

I am using something like this, but the problem I have is that it always opens a additional/new page that displays the coded address in the address bar, as well as the email. I've tried adding target="_top" etc., but this doesn't work - any ideas how to prevent this and just keep the original page?

Name

link|flag
vote up 0 vote down

I created an anti-spam enail revealer and you can check out the demo here http://kevin-le.appspot.com/extra/contact. From there you can follow the link to get the source if you want.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.