Forwarding Email
If you would like to have email you receive here sent elsewhere, you can set up email forwarding.To do so, edit your /stage/sieve/your-username and, after all spam checking tests, add:
if header :contains "X-Spam-Level" "***" { discard; stop; }
else { redirect "name@somewhere.else.net"; }
If you need to forward e-mail to multiple addresses, simply add more redirect commands to your sieve file:
...
else { redirect "name@somewhere.net"; redirect "name@somewhere.else.net"; }
If you want to keep the email in your CS inbox and forward it to another address, use keep:
...
else { keep; redirect "name@somewhere.net"; }
To stop forwarding, remove the redirect command from your /stage/sieve/your-username file.
Once you have the file set to your liking, check its syntax with:
username@machine:~$ sieve_checker -v /stage/sieve/<your-username>
and correct errors as necessary.

