Back to parv's original example,
There isn't a general way to mix ANDs and ORs, but usually something can be
figured out. For that example, where an action should be executed if both A
and B are true, or if C, D, or E is true,
:0 flags
* 2147483647^0 C
* 2147483647^0 D
* 2147483647^0 E
* -1^0
* 1^0 A
* 1^0 B
action
If C is true, skip ahead and do the action; else
if D is true, skip ahead and do the action; else
if E is true, skip ahead and do the action; else
if both A and B are true, do the action; else
don't do the action.
_______________________________________________
procmail mailing list
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail