similar to: A Dovecot Sieve spam filter question.

Displaying 20 results from an estimated 4000 matches similar to: "A Dovecot Sieve spam filter question."

2008 Jul 08
2
Global Script to filter Spam
Dovecot Version: 1.1.1 with sieve and managesieve configured. I want to filter spam with the subject *SPAM* to a spam folder for all users, and i also want users to have personal sieve scripts (like vacation). I have configured Squirrelmail, dovecot manage sieve and avelsieve plugin in squirrelmail to do that. The problem is that the user home 's scripts are replaced with the avelsieve
2016 Aug 19
3
antispam plugin pipe script seems not to be called when it "should be"
On 16-08-18 22:43:32, Ben Johnson wrote: > On 8/18/2016 10:26 PM, Ben Johnson wrote: > > Hello, > > > > (Full "doveconf -n" output is at the end of this message.) > > > > I'm attempting to recreate a "recipe" I had used successfully for quite > > some time (in Ubuntu 12.04 LTS), which allowed me to train > > SpamAssassin's
2008 Mar 10
5
Sieve doesnt filter
Hi! I have a config like this (globalsieverc): require "fileinto"; if address :domain :is "to" "domain.de" { if header :matches "X-Spam-Level" "\\*\\*\\*\\*\\*\\*\\*\\*" { #discard; fileinto "spamdir"; } } else { # The rest goes into INBOX # default is "implicit keep", we do
2011 Jan 09
3
CatchAll virtual user removes spamheaders
Hi all, I am having a small problem with a catch-all user I have setup in my Postfix/Dovecot setup. I am not 100% sure this is Dovecot related, but, logic tells me it is. I have a virtual user called @reinhold.dk setup to redirect to my main account, peter at reinhold.dk. If I send a spam mail (GTUBE) to peter at reinhold.dk, the mail is marked with Amavis x-headers as it should be. If I
2013 Jul 07
1
spamassassin with postfix/dovecot
I'm trying to install spamassassin on a postfix/dovecot server, running CentOS-6.4, following the instructions at <http://wiki.centos.org/HowTos/Amavisd>. I think I have taken all the steps indicated, and the configuration seems to pass the tests suggested, although the response is much more sparse than that described: ------------------------ [tim at alfred ~]$ telnet localhost 10024
2015 Feb 11
2
dovecot 2.2.15 script_after not executed
On 2/11/2015 8:41 PM, Stephan Bosch wrote: > On 2/11/2015 7:34 PM, Florin Portase wrote: >> Hello guys, >> >> I'm having troubles making "script_after" to exec sieve scripts:: >> > Keep in mind that the sieve_after script is only executed when the > "keep" action [1] is executed or when the implicit "keep" [2] is still >
2015 Feb 12
2
dovecot 2.2.15 script_after not executed
On 2015-02-12 01:01, Stephan Bosch wrote: > On 2/11/2015 10:37 PM, Portase Florin wrote: On 2/11/2015 8:41 PM, Stephan Bosch wrote: On 2/11/2015 7:34 PM, Florin Portase wrote: Hello guys, > > I'm having troubles making "script_after" to exec sieve scripts:: > > Keep in mind that the sieve_after script is only executed when the > "keep" action [1 [1]]
2008 Apr 10
4
Sieve Frustrations
I'm soooo close, but this last little thing is eluding me... I have the following Sieve rule in my global sieve rule: require ["fileinto"]; # Move spam to spam folder if header :contains "X-Spam-Flag" "YES" { fileinto "Junk"; stop; } This isn't firing. The .Junk folder exists under the user directories, but messages that have the
2020 Jun 12
0
handling spam from gmail.
First thing first, this isn't necessary a Dovecot related thread and using a challenge-response system like the one suggested by the initiator ("click here if you're not yet another bloody SEO guru") is plain wrong for several reasons, having said that: On 12-06-2020 11:56, Andreas Born wrote: > Am 12.06.2020 um 02:03 schrieb Ralph Seichter: >> * Andreas Born: [...]
2015 Feb 11
2
dovecot 2.2.15 script_after not executed
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello guys, I'm having troubles making "script_after" to exec sieve scripts:: So: plugin { quota = maildir quota_rule2 = INBOX.Trash:ignore quota_rule3 = INBOX.Sent:ignore sieve = ~/Maildir/sieve/dovecot1.sieve sieve_before = /etc/dovecot/sieve/global.sieve sieve_after =
2008 Aug 26
3
Amavisd Howto
Hello CentOS Docs People! I recently used the Amavisd howto to setup a couple of mailservers, which saved me from hours of searching online and reading novels of documentation. Since Ned is taking a little break from the Amavisd page, I would like to help contribute. There were a few things I'd like to add, like GTUBE/EICAR testing and SELinux config lines. My wiki username is WilliamFong.
2016 Aug 19
3
dovecot-lda core-dumps when antispam pipe script calls it
On 2016-08-19 12:17, ben at indietorrent.org wrote: > Aha! Clearly, the vmail user cannot read from nor write to /tmp. (Why > that is, I have no idea, as the /tmp directory's permissions certainly > allow for both; maybe Dovecot implements this as a security measure.) > > This prompted me to change all references to /tmp in the pipe script > to ~/tmp, and create this
2017 Apr 06
2
sieve does not seem to be working
my local.conf has: # 90-sieve.conf plugin { sieve_before = /home/sieve/globalfilter.sieve } and cat /home/sieve/globalfilter.sieve require ["fileinto","mailbox"]; if anyof ( header :contains "X-Spam-Flag" "YES", header :contains "subject" "***SPAM***" ) { fileinto :create "Spam"; } There IS a
2011 Dec 23
1
dovecot / postfix mail bounce problem
Hello, i use a globalsieve rule to collect spam for all mail accounts in a specific mailbox. Here is the code: vi /var/vmail/globalsieverc require ["fileinto"]; # Move spam to junk folder if not address :is "to" "antispam at xxx.com" { if header :contains "X-Spam-Flag" ["YES"] { redirect "antispam at xxx.com"; stop;
2020 Jun 12
7
handling spam from gmail.
Am 12.06.2020 um 02:03 schrieb Ralph Seichter: > * Andreas Born: > >> There exists one problem: at this stage of mail reception you have no >> body content nor header information on which a milter may perform >> deeper analysis, only envelope data. > > I am not sure what you mean by "this stage of mail reception", or what I meant the different stages when
2011 Dec 12
3
simultaneous scripts not running via sieve_before
Hi again everyone, So I've finally got sieve integration happening on my? REHL Postfix/Dovecot server, with private user scripts happily running when users create them. (we user SquirrelMail, so the avelsieve plugin runs the sieve integration). Now I'd like to utilise additional per-user scripts (probably via sieve_before), but I've not been able to get my additional scripts to
2011 Oct 24
2
sieve-pipe Error
I am using Dovecot 2.0.15 on Arch. I have cloned the hg repo and compiled the plugin using the following options: ./configure --with-dovecot=/usr/lib/dovecot --with-pigeonhole=/usr/include/dovecot/sieve/ The relevant section of my dovecot.conf looks like: plugin { sieve = ~/.dovecot.sieve sieve_global_path = /home/vmail/globalsieverc sieve_dir = ~/ sieve_plugins = sieve_pipe #
2004 Dec 07
2
Firewall traversal anomalies - AJA
I'm trying to setup a Cisco ATA 186 which has a public IP address but sits behind a firewall and connects to an Asterisk server with a NAT IP address sitting behind a BSD firewall. The Cisco registers with the Asterisk server without any problems, and I can place calls without any problems and the phone on the other end rings correctly. However, I cannot hear anything through the Cisco
2014 Sep 12
2
sieve: is it possible to filter ALL mailing lists (with header List-Id) to their folders with ONE rule?
Hello, Dovecot. Is it possible to write one rule in sieve, which will: (1) Trigger on any message with "List-Id" header AND (2) Put this message to folder with name build from content of "List-Id" header, in such way, that message with List-Id List-Id: This is decription of list <list-name.host.org> will be put into folder "org.host.list-name" where
2016 Aug 19
2
antispam plugin pipe script seems not to be called when it "should be"
Hello, (Full "doveconf -n" output is at the end of this message.) I'm attempting to recreate a "recipe" I had used successfully for quite some time (in Ubuntu 12.04 LTS), which allowed me to train SpamAssassin's Bayes database when someone dragged an email message from one sub-folder of the account to another. I later tried to re-implement it (in Ubuntu 14.04 LTS),