Forum Moderators: phranque
I'm in the process of setting up a system where new email comes in, hits procmail, is sent to a .sh script, uses php to access mysql to identify if the sending IP is in my blacklist and delete it if it is.
I have my procmailrc using this recipe while I test things:
:0 Whic:test.lock
* ^To:.*testemail
¦ /www/path/emailprotection.sh
:0 Wa
/dev/null
I am able to have my script identify if an email should be let through or deleted, but I am having problems sending that information back to procmail so it can delete the blacklisted emails.
If you happen to have gone through something similar, or have some suggestions, I would dearly love to hear them :)
The shell/php script takes the header of the email, identifies the originating IP address and checks the mysql database...everything tests well and I end up with 2 possible variables called $safe and $bad. I guess the question is, how do I (if it's possible) have the procmail delete the email if the originating IP ends up tagged to the $bad variable.
I looked around to see if I could find the best place to put this question, hopefully this was suitable :)