Forum Moderators: DixonJones
What and how should I stop the emails?
I have already replaced the existing formmail with a more secure version from NMS on all of my accounts. Any help would be greatly appreciated.
Thanks,
Rose
#!/usr/bin/perl
$remoteip = $ENV{'REMOTE_ADDR'};
print "HTTP/1.0 200 OK\n";
# Print HTTP header and opening HTML tags. #
print "Content-type: text/html\n\n";
print "<html>\n <head>\n";
# Print out title of page #
print " <title>Unauthorized Access Attempted</title>\n" ;
print "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"10; URL=http://www.nipc.gov\">\n";
print " </head>\n";
print "<BODY BGCOLOR='#ffffff' TEXT='#000000' LINK='Navy' VLINK='Navy' ALINK='Navy'>\n";
print "<center>Thank you for your interest in this web site.<BR>";
print "You have attempted to illegally access a resource on this site.<BR>";
print "Your IP Address, <b>$remoteip</b>, has been recorded and will be referred to the appropriate authorities.<BR>";
print "Again, thank you for your interest.<BR>";
print "Click <A HREF='http://www.nipc.gov'>here</A> to go directly to the NIPC web site.</center>";
print "</body>\n";
print "</html>\n";
mack's suggestion of an apology/explanation might help but I doubt it because most of the junkmail I get doesn't get read it just gets bounced and/or send to spamcop so having a nice page doesn't affect my decision to report or not...
The only real choice as far as undeliverables go is to try to wait it out - in my experience once the sending has stopped the bulk of the bounces should stop too, but you'll still get a handful for a few weeks afterwards as the systems which are trying to re-deliver finally give up.
If you are seeing lots of undeliverables your address might also have been used as a fake address by a spammer, similar to what happened to this person (I spotted this on /. a week or two ago so you might have already seen it);
[techdirt.com...]
-Tony