Posted on 2007-05-30 07:43:45-07 by ctodd
Email not inserted correctly into 'mail' table
Absolutely love this module, and initial use was promising. I currently pipe an email alias in Sendmail to a small (smrsh) Perl script that populates a variable $message with the data from STDIN, then calls Email::Store::Mail to store the message.
open (LOG, ">/tmp/log.$$"); while (<>) { print LOG; $message .= $_; } Email::Store::Mail->store($message);

After accepting email forwarded from a Yahoo group, I'm seeing that the email headers are missing from the mail table, and only the content items remain. This seems to happen only with multipart HTML email. Is this a known problem? Am I overflowing the variable somehow? If not, is there any way I can crank up some verbose debugging to find the cause of the problem? Chris
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.