labeler2003,
Your second test needs to be ...
exp = new RegExp("@" + emailPart[2]);
if(blacklist.test(re)){
You add the ampersat on so just the domain is matched, not part of it.
Let me know if you have any questions or need more information.
b0lsc0tt
Main Topics
Browse All Topics





by: ddrudikPosted on 2007-10-23 at 12:25:19ID: 20133734
I would change: t[2])){
if(blacklist.test(emailPar
To:
if(blacklist.test('"' + emailPart[2] + '"')){