similar to: Sieve doesnt filter

Displaying 5 results from an estimated 5 matches similar to: "Sieve doesnt filter"

2016 Nov 10
2
How does one mark all messages as read (imap4flag "seen") with sieve?
I don't use the Anti-Spam plugin; I just fire off a BASH script every four hours with crontab which iterates thru the vmail email accounts and trains Spamassassin 'per-user' accounts. If the script sounds interesting I can post it here. It probably could use a little polish though. Bill On 11/9/2016 6:49 PM, Ben Johnson wrote: > On 11/5/2016 1:22 PM, Larry Rosenman wrote:
2008 Jul 21
4
Deliver mail as 'read'?
I'd like to be able to deliver certain mail as 'read' from procmail. My procmail rules call deliver with -m to directly to inject filtered mail to maildir based directories. I like to keep copies of mail I've sent by cc'ing it to myself and using procmail to filter and store copies in the appropriate directory. I cannot seem to find a way of delivering cc'd mail from
2018 Dec 18
8
Spamassassin + Postfix : delete spam mail on the server ?
Hi, My mail server is running on CentOS 7 with Postfix, Dovecot and Spamassassin. I get quite a lot of spam on a few accounts, and Spamassassin does its job fine. Spam mail is identified correctly, and it looks like there are no false positives, e. g. valid mail is never identified as spam. When a message is flagged as spam, the subject line is rewritten to begin with [SPAM]. Then, a filter in
2016 Nov 11
1
How does one mark all messages as read (imap4flag "seen") with sieve?
This one is for vmail which is attached. Bill On 11/10/2016 8:29 PM, Ben Johnson wrote: > On 11/10/2016 3:46 AM, Bill Shirley wrote: >> I don't use the Anti-Spam plugin; I just fire off a BASH script every >> four hours with >> crontab which iterates thru the vmail email accounts and trains >> Spamassassin 'per-user' >> accounts. If the script
2018 Dec 18
0
Spamassassin + Postfix : delete spam mail on the server ?
Hi, Procmail, it can move messages around based on many rules. Use something like this in postfix main.cf: mailbox_command = /usr/bin/procmail-wrapper -o -a $DOMAIN -d $LOGNAME And something like this in /etc/procmailrc or $HOME/.procmailrc SPAMDIR=$HOME/Maildir/.Spam/ :0fw | /usr/bin/spamc :0 * ^X-Spam-Status: Yes $SPAMDIR DEFAULT=$HOME/Maildir/ ORGMAIL=$HOME/Maildir/ DROPPRIVS=yes HTH --