Advertisement
Gerst20051

Email Anti-Spam Script

Aug 17th, 2011
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function phpbbmail (host, user) {
  2.     var res = ""
  3.     var res_h = ""
  4.     for (var n = 0; n < user.length; n++)
  5.         res += String.fromCharCode(user.charCodeAt(n));
  6.     for (var n = 0; n < host.length; n++)
  7.         res_h += String.fromCharCode(host.charCodeAt(n));
  8.     if (res.indexOf('@') < 0 )
  9.         res = res + '@' + res_h;
  10.      location = "mail" + "to:" + res;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement