On Mon, Dec 10, 2001 at 12:22:00AM +0100, Benjamin Michotte <[EMAIL PROTECTED]> 
wrote:
> hello,
> 
> On Sun, Dec 09, 2001 at 02:56:05PM, Matej Cepl wrote:
> > Hi,
> I benefit of this off-topic to ask a little question too.
> Actually, I have this
> 
> :0:
> * ^(To|Cc).*linux@lists\.linuxbe\.org
> linux
> 
> :0:
> * ^(To|Cc).*linux@lists\.unixtech\.be
> linux
> 
> Is it possible to set something like
> 
> :0:
> * ^(To|Cc).*linux@lists\.linuxbe\.org
> * ^(To|Cc).*linux@lists\.unixtech\.be
> linux

The two regex are combined with "and", so both of them must match, and
I don't think that would be what you want ;-)

I would try:
:0:
* ^(To|Cc).*linux@lists\.(linuxbe\.org|unixtech\.be)
linux

> which is shortest ;)

I use something similar.

Nicolas

Reply via email to