[pmmail-list] Filter by age? + BUG

Kris Sorem Sr pmmail-list@blueprintsoftwareworks.com
Fri, 28 Sep 2001 00:46:24 -0700 (PDT)


My reply to message from Dave Hathaway sent on
Thu, 27 Sep 2001 13:29:01 -0500. You wrote:

>Thank you for the continued help.  I can do 
>
>h.date < "2001"
>
>but
>
>h.date < c.date

Correct syntax is  h.date < "$c.date$"
c.date (current date) is a variable and must be delimited by $. The
current system date is substituted for c.date variable each time the
variable is encountered.

>
>gives me a syntax error.  Ideally I would like
>
>h.date < (c.date - "21 days")
>
>but can't even get past the simple step.
 ICSL does not do arithmetic. You can only do boolean string comparisons.
The best you can do with a filter is check if message date is less than
current date. Something else you could try on an incoming message filter
is checking if header date is different from received date.

!h.Received="$h.date$"