Re: [CSCMail-Users] Filters problem ...
Brought to you by:
countzer0
From: Steven K. <st...@vo...> - 2000-07-12 15:47:56
|
On 12 Jul 2000 09:31:06 CEST, Laurent Marzullo said: > Gen (AR|BL|NE|ZH|cre|pre) search expression. > > Only message with > > 'Gen AR ' > 'Gen BL ' > 'Gen NE ' > 'Gen ZH ' > > are moved to the folder 'Generation' but message with > > 'Gen cre1_0 ' (With no space between 'cre' & '1_0') > 'Gen pre1_1 ' > > are not , but > 'Gen cre 1_0' (with a space between 'cre' & '1_0') > > is moved to the folder .... this leads me to believe that your search expresion is: "Gen (AR|BL|NE|ZH|cre|pre) " <- note trailing space... This is further implicated by the two spaces I see between ")" and "search expression" If so, then you are implicitly ONLY matching when (AR|BL|NE|ZH|cre|pre) are followed by a space. If you want to not distinguish, than remove the trailing space. (Of course that will cause your regex to also match things like "Gen ARsfg" but it will not FAIL to match "Gen cre1_0" .) |