Jun 17th, 2013, 6:38 AM
I'm already using the Submission Pre-Parser module to do the bad_email anti-spam technique:
if (!empty($_POST["bad_email"]))
$_POST["form_tools_ignore_submission"] = true;
Now I'd like to add something to that to <also> ignore incoming submissions from a particular IP address that has proven problematic in getting through the bad_email anti-spam technique.
But, since IP address isn't recorded as a regular field in the database (right?), I'm not sure how to achieve that.
Any ideas?
Thanks in advance for your help,
Doug Thompson
Manager of Web and Electronic Communication
Ohio Wesleyan University
if (!empty($_POST["bad_email"]))
$_POST["form_tools_ignore_submission"] = true;
Now I'd like to add something to that to <also> ignore incoming submissions from a particular IP address that has proven problematic in getting through the bad_email anti-spam technique.
But, since IP address isn't recorded as a regular field in the database (right?), I'm not sure how to achieve that.
Any ideas?
Thanks in advance for your help,
Doug Thompson
Manager of Web and Electronic Communication
Ohio Wesleyan University