Displaying 20 results from an estimated 3000 matches similar to: "sieve-pipe Error"
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 17
1
Problems Configuring Pigeonhole/Seve
I am moving my email server from Ubuntu Lucid to Arch. The Arch server
is running Dovecot V2.0.15. Email is working fine, but I can't get
Pigeonhiole/sieve to work.
My dovecot.conf is:
protocols = imap sieve
ssl = yes
ssl_cert = </etc/ssl/certs/mail2.wilkesley.net.crt
ssl_key = </etc/ssl/private/mail2.wilkesley.net.key
first_valid_uid = 5000
first_valid_gid = 5000
auth_username_chars
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
2011 Jul 27
3
sieve on debian squeeze
Hi. I have a quite problem with dovecot and sieve on Debian Squeeze.
I'm trying to enable sieve plugin into dovecot, but something is
deeply wrong. I hope that this is the right place to give some help.
There are no errors or warning messages, simply sieve don't works.
For the big picture about my mail server you can follow this link
2017 Mar 16
4
sievec
I am building a new mailserver on Centos7.
My sieve is created with:
mkdir /home/sieve
cat <<EOF>/home/sieve/globalfilter.sieve || exit 1
require "fileinto";
if exists "X-Spam-Flag" {
if header :contains "X-Spam-Flag" "NO" {
} else {
fileinto "Spam";
stop;
}
}
if header :contains "subject"
2011 Jun 26
2
dovecot global sieve script problem
I cutover to a new server which uses Postfix & Dovecot to handle emails as
opposed to Postfix & Courier in the old server.
Below is the contents of my global sieve script and dovecot config info. The
dovecot-deliver.log does show that the email is being delivered to INBOX.spam
but it ends up in the INBOX instead.
If I put the exact same rule in the user script, the emails are delivered
2011 Sep 13
0
New plugin for Pigeonhole Sieve: sieve_pipe
Hello,
I've finished up work on a new plugin for Pigeonhole Sieve: sieve_pipe.
It adds a new Sieve extension (vnd.dovecot.pipe) providing a new action
command that provides the possibility to pipe messages to external
programs (e.g. shell scripts). The programs available to this command
are explicitly limited and subject to administrator configuration.
The plugin can currently only be
2018 Apr 14
1
imapsieve fail to pipe to sa-learn-spam.sh
Hello,
I'm trying to get Dovecot 2.31, pidgeonhole 0.51 going with imapsieve
and rspamd. I'm getting the below in my errorlog:
cat dovecot.log
2018-04-13 17:35:34 imap-login: Info: Login:
user=<testuser at domain.com>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=57977, secured, session=<o4T2psFpje5/AAAB>
2018-04-13 17:35:34
imap(testuser at
2011 Nov 24
1
modules directory
Hi!
I'm a little confused with how plugin loading works in dovecot 2, I
can't seem to make it load from $(moduledir)/imap/. Is that intended to
work? Just a configuration issue?
Reason I ask is that I ported my antispam plugin (I know there's a fork,
but I still like mine better) to dovecot 2 and the default "make
install" no longer loads properly with just
2017 Dec 18
3
sieve_pipe_socket_dir not created at startup for configured pipe service
Hi, all
I?m new to the list but not to dovecot. I?ve been using it in a basic configuration for some time, but finally decided to tweak my deployed system to take advantage of some more dovecot features. In particular I?m trying to set up pigeonhole to implement spam retraining with imapsieve. All of this is with dovecot 2.2.31 (65cde28) and pigeonhole 0.4.19.
Before going any further let me
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
2010 Dec 22
4
trying to make cmusieve happen globally
In Dovecot 1.1.11 cmusieve is apparently integrated in the Ubuntu 9.10
package "dovecot-common" since the files are there. I am wanting to
right now just do a very basic test of the setup to see how it runs
before doing more sophisticated steps that could obscure any errors or
bugs (e.g. unit testing).
So I took the following example sieve script from the wiki1 documentation:
require
2009 Sep 02
1
Question about sieve script execution
Hi,
after reading the wiki about sieve_before/sieve_after and sieve_global_path,
it's still unclear to me if:
sieve_before scripts are executed if no user script exists, but a global
script is defined.
The reason I ask, is because I'd like to use the same script, so that I don't
have to maintain two scripts to apply "company policy" or "global features".
It
2020 Sep 21
3
At a loss with antispan and imap_sieve
On Mon, 21 Sep 2020, Ferenc wrote:
> Thanks for your quick reply! I tried /tmp/debug.log, world-writeable,
> but no dice.
>
>> https://doc.dovecot.org/configuration_manual/howto/antispam_with_sieve
>
> I followed the setup here. I think it works up until the external script
> is called (pipe :copy "sa-learn-ham.sh"). That's why I tried echo hi >>
2011 Mar 29
3
global sieve not working
My global sieve rule is not working and do not compile. But per-user sieve
is working.
Here is my dovecot -n:
log_path: /var/log/dovecot.log
protocols: imap pop3
ssl: no
login_dir: /var/run/dovecot/login
login_executable(default): /usr/libexec/dovecot/imap-login
login_executable(imap): /usr/libexec/dovecot/imap-login
login_executable(pop3): /usr/libexec/dovecot/pop3-login
mail_uid: 501
mail_gid:
2010 Oct 13
1
Missing ACLOCAL_AMFLAGS ?
dovecot-2.0.5
autoreconf is failing with: [1]
$ autoreconf -f -i
[...]
src/plugins/acl/Makefile.am:11: `module_LTLIBRARIES' is used but
`moduledir' is undefined
[...]
autoreconf-2.65: automake failed with exit status: 1
Also,
$ ./configure --help | grep module
--with-nss Build with NSS module support (auto)
In other words, no moduledir output in configure --help. Looks
2012 Jun 01
1
Exposing global (default) sieve script through Managesieve
Hi folks,
I'm setting up a dovecot server with managesieve support. I'd like to
offer spamfiltering through a Sieve script to my users by default,
but still allow them to modify the filtering rules through Managesieve.
I found the sieve_global_path configuration option, which seems perfect
for what I want. I can configure a default script there, which will work
for all users until they
2011 Dec 24
1
sieve in sql or reporting
With dovecot2 and pigeonhole sieve/managesieve is it currently possible to store sieve rules in an sql database?
If not is there a way to query all accounts; looking for things like active vacation rules?
Regards,
Bradley Giesbrecht
2012 Jun 25
1
dovecot support ms-tnef mail parser?
Hello everybody,
I used iRedMail Server with dovecot-1.2.0. I used OutLook2007 send a RTF
mail and the mail can't be parsed normal.
In dovecot maildir storage the mail body appeared ,/
/
/------=_NextPart_000_0007_01CD52BC.99E1BE10
Content-Type: application/ms-tnef;
name="winmail.dat"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
2006 Jan 18
1
problems compiling
hi
i downloaded dovecot-1.0.beta1.tar.gz, did a rpmbuild -ta
dovecot-1.0.beta1.tar.gz (which uses the dovecot.spec from the tar.gz), and got
the following:
Making install in quota
make[3]: Entering directory
`/usr/src/gimre/rpm2/BUILD/dovecot-1.0.beta1/src/plugins/quota'
make[4]: Entering directory
`/usr/src/gimre/rpm2/BUILD/dovecot-1.0.beta1/src/plugins/quota'
mkdir -p --