I was using Mail::Audit for a project and ran into a problem with it.

When I attempted to "deliver" the email to STDOUT it didn't have the first line of the original email "From [EMAIL PROTECTED]"

Subsequently it screwed up my mailbox because I was trying to run Mail::Audit inside of procmail.

Is there some way that you can run Mail::Audit as a filtering stream taking mail from STDIN -> [process] -> STDOUT.

If not Mail::Audit, what other perl tools are available that might do this?

Right now I'm looking at:

@email = <STDIN>
[do stuff]
print join("\n", @email),"\n";


--
When pleasure remains, does it remain a pleasure?


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to