From Billy Jack Dial, received 28/11/01, 5:41 am -0500 (GMT):
> Hello,
>
> Would it be possible on my main page to have a link to a password protected
> page where in the password is there to see so the potentual e-mailer will
> enter the code and access the e-mail link. Can these Address harvesters
> access the password page?
Address harvesters are very simple, they just follow links and either
look for a "mailto" or an "@" and copy the text either side of it
until they reach a space. They can't reach a page which isn't linked
to by other pages, and they can't read Javascript so you can put
email addresses on your pages concealed by a script like this:
<script>
//Anti-spam address builder
var user = "steve"
var domain = "uxn"
var tld = "com"
document.write("<a href=" + "mail" + "to:" + user + "@" +
domain + "." + tld + ">" + user + "@" + domain + "." + tld + "</a>")
</script>
I've been using this method on all my sites since 1998 and have never
once received spam to any address published using this method. (if
you're running a commercial site the chances of a visitor not having
javascript turned on are minuscule)
--
Steve Linford
Ultradesign Xtreme Network
http://www.uxn.com
#############################################################
This message is sent to you because you are subscribed to
the mailing list <[EMAIL PROTECTED]>.
To unsubscribe, E-mail to: <[EMAIL PROTECTED]>
To switch to the DIGEST mode, E-mail to <[EMAIL PROTECTED]>
To switch to the INDEX mode, E-mail to <[EMAIL PROTECTED]>
Send administrative queries to <[EMAIL PROTECTED]>