GeorgeC
07-09-2002, 03:51 AM
I've never paid much attention to the ill effects of spam other than that they're a nuisance. However recently, something dawned on me that kept me awake- spam snowballs, and eventually, it's going to incapacitate my entire email account. If I chart the amount of spam I get to my main email account over the past 3 years, it's s steady rise.
Any tips on fighting back? The problem is that server side scripting/ admin is not my strong point, and most web hosts by default do not offer tools to filter out spam at the server side (I want to fight back on bandwidth consumption as well by these garbage mail). It would be great if there are plug-and-play scripts/tools for this sort of thing.
skylab
07-09-2002, 03:59 AM
www.pocomail.com (using easy to download scripts)
+
www.spampal.com
+
www.spamcop.net
works pretty ok for me! :)
Studio64
07-09-2002, 04:07 AM
How to stop getting new spam is also important as well
(I don't truely agree w/ the exponetional growth theory of spam. It'll grow at a slower rate over time b/c upstream providers are really gonna start cracking down on them soon. It's wasting their money and resources too)..
How to stop getting spam:
Never reply in any way what so ever.
Never click unsuscribe.
(Why?... because now your confirming to the spammer that there really is a person on the end of that email. More reason to spam you).
On most webpages you'll have your email address.
<a href="mailto:me@domain.com">me@domain.com</a>
Well thats pretty much just bait for spam bots (and Klez now too)..
Solution:
<HTML>
<SCRIPT LANGUAGE=javascript>
<!--
function bjorn(adress) {
window.location.replace('mailto:' +adress+ '@somesite.domain');
}
-->
</SCRIPT>
Then in body
<BODY>
<A href="javascript:bjorn('jonas')">Click here to send mail.</A> </BODY>
</HTML>
cyberdao
07-09-2002, 05:58 AM
Mailwasher (http://www.mailwasher.net) looks like a great tool.
Angel78
07-09-2002, 09:08 AM
Originally posted by iamdave
Spam is good. :spam:
www.spam.com ? :)
allera
07-09-2002, 09:46 AM
Take a look at www.atqui.com and see if it works for you. That's the best tool I have been able to find if I'm not able to control the SMTP server (my ISP for instance). Atqui has its ups and downs, but it works well.
JKLIVIN
07-09-2002, 11:53 AM
I am with cyberdao, this works for us.
Studio64, in all the sites I do, I make a php contact page containing a form (with a predefined address to prevent abuse), and I encode the email addys so that it looks like
mailto:
but shows up as mailto:
That way the vistor has three ways to contact the site owner, and the addy is visable, yet spam bots cannot find the address.
edited because the code "worked too well"
GeorgeC
07-09-2002, 09:09 PM
I've found most client side solutions for "hiding" the email address, such as the JavaScript one above, don't seem to work. It seems spam bots haven gotten more clever, and can now piece together 1+1. lol
Yeah all they need is to detect the @ symbol anywhere and they pretty much have you.
One can also use an image of the addy but then people can't copy and paste it.