I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
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