Galder’s Passionate Blog

What's the point of living if you can't love or hate?

Tag archive for ‘sieve’

Vacation message with Sieve script

Let’s kick things off, shall we? Here’s a very simple tip that I won’t be using for much longer as my company mail is moving providers:
How do I set a vacation message using Sieve script?

First, add “vacation” import to the script:

?View Code PHP1
require ["fileinto","vacation"];

Add the vacation message content at the bottom of the script:

?View [...]