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
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";
}