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?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.