Re: More sieve questions ...

2000-11-02 Thread Ken Murchison
The Hermit Hacker wrote: > > How would one do a redirect *and* a keep? > > Basically, we want to do the equivalent of: > > \user,user@domain > > first thought was, by Vince, was: > > if true { > keep; > redirect "user@domain"; > } > > gave errors ... > > how about somethin

More sieve questions ...

2000-11-02 Thread The Hermit Hacker
How would one do a redirect *and* a keep? Basically, we want to do the equivalent of: \user,user@domain first thought was, by Vince, was: if true { keep; redirect "user@domain"; } gave errors ... how about something like: if true { keep && redirect "user@domain"; }