I recently solved this problem with procmail and python
Read the documentation for procmail. You can tell him to send all incoming letters in a python script like this to a special procmail configuration file
:0: | ./scripts/ppm_processor.py
Python has an affordable email package that can do anything you might want to do with email. Read the following ...
from email.generator import Generator from email import Message from email.MIMEBase import MIMEBase from email.MIMEText import MIMEText from email.mime.multipart import MIMEMultipart
user122299 Aug 04 '09 at 5:49 2009-08-04 05:49
source share