We found this great trick to block most spam for any form mail type form. Just paste this right above the submit button in the code: <div id=”fooDiv”> <label for=”foo”>Leave this field blank</label> <input type=”text” name=”foo” id=”foo”> </div> <script> (function () { var e = document.getElementById(“fooDiv”); e.parentNode.removeChild(e); })(); </script> The will eliminate…
filter
How to prevent spam
If you are like me, you are amazed how spam still exists. After over 20 years somehow we cannot find a way to stop spammers without blocking the real emails. I believe the solution is simple really, there needs to be a central database that every email needs to be registered with. Until then we…
Turn on the Spam Filter in Mozilla Thunderbird
Spam filtering at the ISP or Hosting level means emails blocked will never have a chance to reviewed. This is very bad because no spam filter is even 80% accurate as of now. The best way to filter spam is in the program you use, the great part of this is you can still access…