According to http://lipas.uwasa.fi/~ts/info/proctips.html#orrules , you can make basic "or" rules in .procmailrc with something like:
:0:
* ^From:.*reriksso@([-a-z0-9_]+\.)*helsinki\.fi|\
^From:.*era@iki\.fi
${DEFAULT}
Normally, you can make a condition checks the body with a condition like
* B ?? search_body_for_this
However, this overrides the default header/body search area, so I can't do something like
* B ?? search_body_for_this|\
^From:.*example@example\.com
Is there any way I can do "or" rules as conditions that have sub-conditions that search the body and headers separately?