Apparently I am a spammer and this is the reason?
My webhost, who I won't name, claims that a very simple script is allowing somebody to spam the web. From my stats I can't even see where anybody has accessed this page recently so I don't buy it, plus this script is way too easy. Perhaps one of y'all might have an opinion if its possible related.Oh yeah, they told me that the problems would stop after I deleted all my cgi and pl files - of course, they didn't.
Here's the important part of the script...see, really easy and the mail goes only to me right now (since I don't have time work on this)...the rest of the page is just html to support this...
PHP Code:
if ($_POST['thanks']) {
$headers .= "From: <$email>\r\n";
$headers .= "Reply-To: <$email>\r\n";
$headers .= "Return-Path: <info@a.com>\r\n";
$msg = "Subscribe: $email";
mail ("info@a.com","SUBSCRIBE",$msg,$headers);
header("location:subscribe.php?a=thanks");
}
if ($_POST['nothanks']) {
$headers .= "From: <$email>\r\n";
$headers .= "Reply-To: <$email>\r\n";
$headers .= "Return-Path: <info@a.com>\r\n";
$msg = "Unsubscribe: $email";
mail ("info@a.com","UNSUBSCRIBE",$msg,$headers);
header("location:subscribe.php?a=nothanks");
}