From c72dfde78548299b83d930ab3595f670030cc595 Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Tue, 13 Sep 2016 22:51:29 +0100 Subject: [PATCH] Explain how to skip inbox (should be a common case; I personally spent more than an hour investigating how to do this) --- docs/content/advanced/mail-sieve.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/advanced/mail-sieve.md b/docs/content/advanced/mail-sieve.md index bae29d06..ed13394e 100644 --- a/docs/content/advanced/mail-sieve.md +++ b/docs/content/advanced/mail-sieve.md @@ -29,6 +29,11 @@ require ["copy"]; redirect :copy "user2@otherdomain.tld"; ``` +Just forward all incoming emails and do not save them locally: +``` +redirect "user2@otherdomain.tld"; +``` + For more examples or a detailed description of the Sieve language have a look at [the official site](http://sieve.info/examplescripts). Other resources are available on the internet where you can find several [examples](https://support.tigertech.net/sieve#sieve-example-rules-jmp). ### Manage Sieve