Is there a way to OR procmail conditions?
I have lots of lines like so:
:0
* (^From:.*Reel\.com)
/dev/null
:0
* (^From:.*sonypictures\.com)
/dev/null
and I'd like to make them more like this:
:0
* (^From:.*Reel\.com)  OR
* (^From:.*sonypictures\.com)
/dev/null
I tried to DeMorganize them like:
* ! {
* ! (^From:.*Reel\.com)
* ! (^From:.*sonypictures\.com)
}
But that doesn't work.
And ideas?
Thanks,
Jason