|
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
|