On Jun 20, 2006, at 12:53 PM, Jerry Freeman wrote:
> In RapidWeaver the Contacts page is PHP, and has been patched twice
> in the past few months. My?perhaps illogical?reasoning is the
> mailto: html is more secure with less bother for maintaining my
> site. I'm also looking into encrypting the site mail address.
> Thanks. best...jf
This is a bit off topic, but something I do to make the spam email
address harvesters work a little harder is to obfuscate my email
address on my web pages with a little scripting:
<script language="JavaScript"><!--
var name = "llarson";
var domain = "louisville.edu";
document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
document.write(name + '@' + domain + '</a>');
// --></script>
This appears in a Web browser as my email address, but the spambots
aren't as likely to pick it up because they don't parse it as an
address unless they evaluate the script.
| The next meeting of the Louisville Computer Society will
| be June 27 at Pitt Academy, 6010 Preston Highway.
| The LCS Web page is <http://www.kymac.org>.
| List posting address: <mailto:macgroup at erdos.math.louisville.edu>
| List Web page: <http://erdos.math.louisville.edu/macgroup>