Re: [Exim] Filtering by subject

Top Page
Delete this message
Reply to this message
Author: Marc Perkel
Date:  
To: Exim Mailing List
CC: exim-users
Subject: Re: [Exim] Filtering by subject
I use something like this:

virtual_lowspam:
driver = accept

  condition = "${if and { \
                        {def:h_X-Spam-Flag:} \


{exists{/vhome/${domain}/home/${local_part}/spam-low}} \
                        } {1}{0}}"


domains = lsearch;/etc/exim/vdomains
require_files = /etc/vmail/passwd.$domain
retry_use_local_part
transport = virtual_local_lowspam


Exim Mailing List wrote:

>Hello,
>
>I have checked for docs and am a little confused/or unable to find the
>right ones. Here is simply what I want to do:
>
>exim version 4.12
>
>local_delivery:
> driver = appendfile
> file = /var/spool/exim/$local_part
> delivery_date_add
> envelope_to_add
> return_path_add
>
>spam_delivery:
> local_delivery:
> driver = appendfile
> file = /var/spool/spam/$local_part
> delivery_date_add
> envelope_to_add
> return_path_add
>
>
>How am I able to get it to search the subject line and if it contains
>the phrase: ***SPAM***
>
>It will use spam_delivery, otherwise use local_delivery ?
>
>Is there a better way to do this? I pretty much want 2 spool
>directories, on of spam for each user, one for regular mail.
>
>We have a webmail (squirrelmail) setup to go to the spam folder, so the
>user can view the spam via a webbrowser.
>
>Any help or a point in the right direction would be appreciated.
>
>Thanks a lot!
>
>eximlist@???
>
>
>--
>
>## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>
>
>
>