On Sat, 16 Jul 2016 21:43:35 -0400 Dianne Skoll <[email protected]> wrote:
> I suspect that's where you are going wrong. You are using numeric > comparison rather than string comparison. I think you probably want: And in fact you do that in a number of places. And actually, "=" is not a comparison operator. It's an assignment operator. You most likely need to review your entire filter to make sure you use "eq" for string comparisons and "==" for numeric comparisons, rather than "=". Regards, Dianne. _______________________________________________ NOTE: If there is a disclaimer or other legal boilerplate in the above message, it is NULL AND VOID. You may ignore it. Visit http://www.mimedefang.org and http://www.roaringpenguin.com MIMEDefang mailing list [email protected] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

