1

In following-up my previous question, I am trying to use munpack in an automated fashion.

I'm trying to do this with procmail.

> cat .procmailrc
:0
    | sleep 5 ; munpack /var/spool/mail/testmail ; sleep 5
    /dev/null

However, this doesn't do what I expect it to - it's just deleting the message (the /dev/null line), and appears to not be running the script line.

What am I missing?

warren
  • 10,322

1 Answers1

1

Got it! need to just pipe the email into munpack on its own, which effectively causes the issue to /dev/null.

> cat .procmailrc
:0
{
    :0 
    | munpack
}
warren
  • 10,322