search for: suspectedspam

Displaying 4 results from an estimated 4 matches for "suspectedspam".

2017 Dec 15
1
sieve filter move wrong email to Junk folder
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, 15 Dec 2017, Bill Shirley wrote: > This is what I use.? Notice the comma: > require "fileinto"; > if header :contains "X-Spam-Status" "Yes," { > ? fileinto "SystemFolders.SuspectedSpam"; > ? stop; > } I would even add the space: if header :contains "X-Spam-Status" "Yes, " { because the list of tests won't contain a space. - -- Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEVAwUBWjOKB8QnQQNheMxiAQIdeAgAyL+FDM/DE5J1sRkJ6P8...
2017 Dec 14
6
sieve filter move wrong email to Junk folder
> Date: Thursday, December 14, 2017 09:47:44 -0800 > From: Gao <gao at pztop.com> > > I use a sieve filter to move spam email to user's Junk folder: ># cat spam_to_junk.sieve > require "fileinto"; > ? if exists "X-Spam-Status" { > ????????? if header :contains "X-Spam-Status" "YES" { > ????????? fileinto
2017 Dec 15
0
sieve filter move wrong email to Junk folder
This is what I use.? Notice the comma: require "fileinto"; if header :contains "X-Spam-Status" "Yes," { ? fileinto "SystemFolders.SuspectedSpam"; ? stop; } Bill On 12/14/2017 1:02 PM, Richard wrote: > >> Date: Thursday, December 14, 2017 09:47:44 -0800 >> From: Gao <gao at pztop.com> >> >> I use a sieve filter to move spam email to user's Junk folder: >> # cat spam_to_junk.sieve >> r...
2016 Feb 07
6
autoexpunge - different settings for different users
I have some users where I'd like to expunge their mail at different times. For example, I may have some users who I want to expunge everything from every folder at 30 days. Others where I'd like to expunge everything at 90 days. And still others where I only want to expunge mail from the Trash and Junk folders, and nowhere else. Is there a way to do some sort of lookup for this? Or