Filter question
Bill McCarthy
pmmail@rpglink.com
Sun, 17 Oct 1999 15:51:14 -0400
On Sun, 17 Oct 1999 12:42:01 +0100 (BST), Dave Saville wrote:
> On Fri, 15 Oct 1999 15:07:13 -0400, Bill McCarthy wrote:
>>How about something like (evaluation is right to left):
>>
>> h.from="other_1" | h.from="diehlk@uncwil.edu" & h.to="other_1"
>> move to folder_1
>>
>>This, of course, has filter order problems if you send an email to
>>more than one person you track.
>Now its me thats being dense - Why does it have to be one filter.
>Surely all one needs is a filter looking at "from" lines for incoming
>and a second looking at "to" lines for outgoing?
What I proposed actually requires x filters, one for each other_x. This
particular problem could be solved with 2*x filters. There would be two
filters for each person. For example, for other_1:
1st filter:
h.from="other_1"
move to folder_1
2nd filter:
h.from="diehlk@uncwil.edu" & h.to="other_1"
move to folder_1
Bill