I would get a shot gun, and kill the damn spammer (well, if I could). Some body got my email (may be from my website or from here???), and sent me an ad with naked pix and all the other adult related spam! The message was so huge, I had to download it few minutes.

Just hate those guys!
Well any way, Rajani, keyword filter is also a great idea. I have found a code by Matthew M. Wright, it's a "free for all links". And his script has the features we need; but the only problem is: how to incorporate his code into Links? You can find his script at: http://www.worldwidemart.com/scripts/
here's some useful code:
########### Check for restricted words in the title.
open (FH, "badwords.txt");
while (<FH> ) {
chop $_;
if ($title =~ /\s$_\s/i | | $title =~ /^$_\s/i | | $title =~ /\s$_$/i) {
print "Content-type: text/html\n\n";
print "<html><head><title>Sorry, There's A Restricted Word In Your Title!</title></head>\n";
print "<body bgcolor=white><br><center><font size=5 color=blue>\n";
print "<b>Sorry, There's A Restricted Word In Your Title!</b></font><br><br>\n";
print "<b>Please hit your browser's \"back\" button and try again.</b></center><br>\n";
exit;
}
}
close (FH);
########### Check for restricted URLs.
open (FH, "badurls.txt");
while (<FH> ) {
chop $_;
if ($url =~ /$_/i) {
print "Content-type: text/html\n\n";
print "<html><head><title>Sorry, You Can't Post A Link To That URL Here!</title></head>\n";
print "<body bgcolor=white><br><center><font size=5 color=blue>\n";
print "<b>Sorry, You Can't Post A Link To That URL Here!</b></font><br><br>\n";
print "<b>Please hit your browser's \"back\" button and try again.</b></center><br>\n";
exit;
}
}
close (FH);
### - END - ###
This 'looks' easy, I'll try to add these two in Links 2.0. Any suggestion, will help. Or may be some one already have done this part?
Regards,
Pasha
------------------
-[ It's just another night; good morning Webmasters! ]-