editor
706
edits
This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!
m (→example reply:) |
(syntax!) |
||
(3 intermediate revisions by one other user not shown) | |||
Sometimes you may want to sent an autoresponder, eg an out of office, or an automatic reply
You can use the following sieve code as an example
<syntaxhighlight lang=sieve>
require ["vacation","variables"];
require ["vacation","variables"];
# rule:[html auto responder reply]
set "subject" "${1}";
}
vacation
:subject "Automatic reply with HTML information. Re ${subject}"
:mime
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
</body>
</html>
";
}
</syntaxhighlight>
'''See below how to add this via Roundcube.'''
This will:
Roundcube has a 'wizard' or semi-WYSIWYG editor, that allows you to create filters using a form. However, for this example it won't understand all the syntax so you can't use this editor, you have to edit the sieve script by hand, Roundcube lets you do this though.
# In Roundcube, go to Settings, Filters.
# You may already have a 'Filter set' called roundcube, that's fine.
# You can paste in the script above.▼
# Clicking save should say that it's updated, if you get errors, then the syntax you have won't be correct, but the example above works.▼
▲You can paste in the script above.
▲Clicking save should say that it's updated, if you get errors, then the syntax you have won't be correct, but the example above works.
If you later edit the filter with Roundcube be sure to use the 'edit filter set' link as otherwise the code will get altered and not work.
|