Jump to content

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!

Sieve Filtering: Difference between revisions

Interaction between Spam checking and Sieve filtering
(Interaction between Spam checking and Sieve filtering)
 
(65 intermediate revisions by 3 users not shown)
<indicator name="Faults">[[File:eMenu-mail-iconemailadd.png|64pxsvg|link=:Category:Email Features|30px|Back up to the Email Features Category]]</indicator>
 
= '''THIS FEATURE IS NOT AVAILABLE YET, IT IS BEING WORKED ON AND TESTED INTERNALLY.''' =
 
= What is Sieve filtering? =
 
At a basic level, Sieve is a system whereby the server is given rules beby you to process incoming email - e.g. forward emails, discard emails, or filter your email in tointo folders. It then means, that, whatever email program you use, your email is already filed away in to it'stheir correct folder according to your needs. Sieve can do more than just move email to their correct folder though.
 
It is helpful if you:
 
*Use IMAP
*SortWant to sort email ininto tospecific folders
*Read email from a number of devices
 
This page explains how to connect to our sieve server using Roundcube or other ManageSieve client software, and gives some examples and also further about Sieve and the features we have enabled
The service can now sort your email in to your folders rather than relying on one of clients to be on and do the work for you.
 
==Sieve Server Settings==
 
To setup and manage your Sieve filters you would use a program to connect to theour 'Manage Sieve' servers. The easiest way to do this is to use our Roundcube webmail (see below). If you have your own manage sieve client server,then use the following settings:
 
{| class="wikitable"
|-
!Server
|your.domain.mail.aa.net.uk
|Enable TLS
|eg, example.com.mail.aa.net.uk ie, the same as what you use to collect email by IMAP
|-
!Port
!Username
|Your email address
|ege.g. fred@example.com. iei.e., the same as what you use to collect email by IMAP
|-
!Password
|your email password
|iei.e., the same as what you use to collect email by IMAP
|-
!Security
|TLS
|You canshould use TLS for a secure connection, recommendedrequired.
|}
 
[[File:Thunderbird-sieve-tls.png|none|frame|The Thunderbird add-on - You should use TLS for a secure connection]]
 
==Sieve file limits==
*Maximum script size = 1M
*Maximum number of actions = 128
 
== Creating Sieve Filters ==
 
Our IMAP servers run 'ManageSieve', this is a service which clients talk to in order to create and edit sieve filters. ManageSieve runs on port 49104190 on the IMAP servers. There are various clients which support ManageSieve, ege.g.:
 
*RoundCube - our webmail has a Filters option in the settings - We'd recommend this even if you don't usually use webmail.
*[https://addonsgithub.mozilla.orgcom/en-US/thunderbird/addonthsmi/sieve/releases Extension for Thunderbird] (fine for manually editing the script file) (Try'''Important note:''' Use the latest version if the one from the Thunderbird is out of date. [https://github.com/thsmi/sieve/blob/master/nightly/README.mdreleases latest] version ifversion the0.3 releasedor versionhigher doesshould notbe workok. '''No longer works with Thunderbird versions dating from 2023'''.)
*[https://www.claws-mail.org/plugin.php?plugin=managesieve Extension for claws-mail] (may be packaged as claws-mail-managesieve). Very similar to the Thunderbird extension.
*There are others, take a look at [http://www.sieve.info/clients sieve.info]. You'd use the same server, username and password that you do to access your email, and use port 4910, and TLS.
*On Linux, you may find a '''sieve-connect''' package which is a command line tool.
*There are others, take a look at [http://www.sieve.info/clients sieve.info]. You'd use the same server, username and password that you do to access your email, and use port 49104190, and TLS.
 
Whatever IMAP email program you use the Sieve filtering will still work. It may be easiest to create and edit the filters using Roundcube webmail even if you don't wish to use Roundcube for reading email.
 
== Using Roundcube Filters ==
Roundcube will let you create filters using a WYSIWYG style editor - with easy to use drop-down options and so on. You can also edit the sieve code in 'raw' format - select 'Actions', 'Edit filter set' (it's the way to move rules up or down the order).
 
To create a simple filter to move a few online shop emails in to a folder called shopping:
#Create a new filter set, and then a new filter: [[Image:Rc-filter.png|none|300px|thumb|New filter]]
This will then move emails from these addresses in to a separate folder.
 
=Sieve Extensions We Don't Support=
We don't support the following extensions:
*reject
**This is because we don't want to have to deal with backscatter and emailing non delivery report messages
 
 
=Other Sieve Notes=
*When using fileinto: with :create, a new folder will be created if it does not already exist, this is normal. In this case, the new folder will be subscribed to automatically. -You may need to restart your client, or collapse and reopen the folder list (e.g. Thunderbird), for it to notice that there is a new folder that should be listed.
*spam folder: If you have a folder called 'spam' then email which is marked as spam will end up there bypassing any Sieve filters. If you do not wish to happen then rename or delete the folder called 'spam', and add a filter to move spam marked messages to another folder (e.g. junk, rubbish, etc.) '''Update November 2023''': this appears not to be the case - the 'spam' folder is automatically created, but messages are processed by the spam engines, and then passed through Sieve filtering so you can decide what to do with the spam using your Sieve rules. To recreate the previous behaviour (and perhaps extend it a little) you might need a rule like:
require ["fileinto","mailbox"];
if exists "X-Spam-Flag" {
if header :is "X-Spam-Flag" "YES" {
if exists "X-Spam-Bar" {
# 20 OR MORE +
if header :contains "X-Spam-Bar" "++++++++++++++++++++" {
# Can't reject, not supported
fileinto :create "bad-spam";
stop;
}
}
fileinto :create "spam";
stop;
}
}
 
=Some Examples=
 
* [[Sieve-Example:Notify|Notify another mailbox when email arrives]]
* [[Sieve-Example:Move email to a folder|Move email to a folder]]
* [[Sieve-Example:Move email to a suffix folder|Move email to a folder based on a localpart suffix]]
* [[Sieve-Example:HTML Autoresponder|HTML Autoresponder]] Automatically reply to incoming email with a HTML formatted email
 
== Converting From Mozilla Thunderbird to Sieve ==
 
If you use Mozilla (ege.g. Thunderbird) and have existing rules created, then they can be converted in to Sieve format on this 3rd party page: [http://wikimozfilter2sieve.aaispsourceforge.org.uknet/mozilla2sievemailfilters.html mozilla2sievehttp://mozfilter2sieve.sourceforge.net/mailfilters.html]. Here are some step by step instruction on moving the filters over:
 
#Open your msgFilterRules.dat file in a text editor (notepad, gedit etc.)
#*This file will be found in your 'Local directory', which can be found in Account Settings - Server Setting - look for the 'Local directory' box at the bottom.
#Copy and paste the text in to the [http://wikimozfilter2sieve.aaispsourceforge.org.uknet/mozilla2sievemailfilters.html converter]
#Install the ThunderBird ManageSieve Addon:
#*Tools - Addons - Search for Sieve, and Install 'Sieve 0.22'
#Go to Tools - Sieve Message Filters
##Click 'New...'
##give it a name, ege.g. My Filters
##Paste in the results from the converter page
##Check that there are not any errors reported, then click Save.
##Close that tab
#Disable the original Thunderbird filters:
#*Either by closing Thunderbird and renaming the msgFilterRules.dat to something else (ege.g. msgFilterRules.dat.old) or by unticking all the tick boxes under Tools - Message Filters.
#By default Thunderbird only checks the Inbox for new email, now that email will appear in different folders, we need to tell Thunderbird to check each folder:
##Preferences - Advanced - General - Config Editor (be careful!)
#You can then view the filters via Roundcube webmail, which is easier to edit as it's more of a GUI editor rather than than a straight script editor like the Thuinderbird addon is.
 
=Sieve Extensions We Don't Support=
We don't support the following extensions:
*reject
**This is because we don't want to have to deal with backscatter and emailing non delivery report messages
 
==Help with Other Email Features:==
<ncl style=bullet maxdepth=5 headings=bullet headstart=2 showcats=1 showarts=1>Category:Email Features</ncl>
 
 
[[Category:Email Features]]
 
 
[[Category:Email]] [[Category:Domains]]
[[Category:Email Features]]
[[Category:Sieve]]
[[Category:Email]] [[Category:DomainsHow to]]
editor
471

edits