I'm simply looking to allow incoming email at my mail server to trigger php scripts.
If, for example, somebody emails sql.post@domain.com, maybe i want the body of their email automatically added to a database.
Or
If, for example, somebody emails echo@domain.com, maybe I want the email to be automatically distributed to a group of email addresses within a database, using custom variables from within the database.
Neither of those are real examples, but the concept of using email to interface scripts real-time, indepednent of web usage is potentially important. Obviously, if you are using email commands to update a web page, it doesn't have to be real-time, the page just needs to update itself the next time somebody loads it, but there are many tasks that DO need to be handled real time.
Currently, I am going to explore using Procmail to get this accomplished, unless anybody has a better suggestion.
I'll try to post whatever I find to work incase somebody stumbles across this in the future and is interested.