I just read through the thread, and I have a few thoughts.
On the account that I used for years and years, I now end up with
around 100 spam a day. Obviously, I had to stop using that e-mail.
No matter what I did, I could not get the spam to stop. Filtering
just didn't work - it just kept coming and coming. This, of course,
still causes strife because, since I used the address for years and
years, people still e-mail me there. So, I must still occasionally
sift through all that goddamn friggen spam. It really amazes me how
some people can e-mail me on the correct address one day... and the
very next day e-mail me at my old address. Brain fart or something?
My website e-mail gets about 2 spam a month. My "(e-mail address removed)"
address gets spammed all the time.
I also may have come up with a decent and easy way to "hide" an e-mail
address.
I use a javascript trick to remove common markup and make it easier to
change multiple pages -
<script language="javascript" type="text/javascript"
src="filename.js"></script>
and in filename.js I write:
document.write('text HTML blah blah blah')
I have noticed that in doing this, that robots can't crawl the
javascript (to fix the linking problem, I have put a link to a site
map on the main page). Assuming that harvesting robots would work the
same as search engine robots - then the harvesting robots will never
be able to see the e-mail address if you put it in filename.js
So... what you could theoretically do is have this where you want your
e-mail:
<script language="javascript" type="text/javascript"
src="email.js"></script>
and put this in the email.js file:
document.write('<a href="mailto:
[email protected]">
[email protected]</a>')
and it would work... right? maybe?
Just an idea. Thought I'd throw it out there. I think I may just try
it now. Actually, I currently have my address as me(@)domain.com
'cause I figured anyone with any brain cells would realize to remove
the "( )" - but I think this javascript trick might just be better