[Dovecot] LDA sieve logging
Hello,
using the cmusieve plugin with the postfix + dovecot-lda. Filtering works, and dovecot logs, but for sieve filtering I see no message in the syslog about performed actions. How do I set this?
thanks
On 2006-07-26 15:21:34 +0200, Luca Corti wrote:
using the cmusieve plugin with the postfix + dovecot-lda. Filtering works, and dovecot logs, but for sieve filtering I see no message in the syslog about performed actions. How do I set this?
it works for me here. except for delivering to the INBOX.
what dovecot version and what revision of the sieve plugin?
darix
On Wed, 2006-07-26 at 16:14 +0200, Marcus Rueckert wrote:
it works for me here. except for delivering to the INBOX.
I'm delivering to subfolders.
what dovecot version and what revision of the sieve plugin?
I'm using latest CVS for dovecot-sieve and latest CVS of 1_0 branch for dovecot.
thanks
Luca
Hi,
On Wed, 26 Jul 2006, Luca Corti wrote:
Hello,
using the cmusieve plugin with the postfix + dovecot-lda. Filtering works, and dovecot logs, but for sieve filtering I see no message in the syslog about performed actions. How do I set this?
it seems that only explicit fileinto actions are logged and not the implicit keep action.
Use an explicit fileinto at the end of our sieve scripts.
if(...) {
...
...
...
} else {
fileinto "INBOX";
stop;
}
Of course it would be nice if the implicit keep action would also be logged.
Greetings Christian
-- Christian Kratzer ck@cksoft.de CK Software GmbH http://www.cksoft.de/ Phone: +49 7452 889 135 Fax: +49 7452 889 136
On Wed, 2006-07-26 at 19:55 +0200, Christian Kratzer wrote:
it seems that only explicit fileinto actions are logged and not the implicit keep action.
My .dovecot.sieve file is in the form
require "fileinto";
if ... { fileinto ...; stop; }
if ... { fileinto ...; stop; }
if ... { fileinto ...; stop; }
And activity of explicit fileintos is not logged, even if actual filtering is done.
-- Luca Corti PGP Key ID 1F38C091 Adesso dico: "Padre, nelle tue mani consegno il mio spirito." Lc 23,46
On Wed, 2006-07-26 at 22:16 +0200, Luca Corti wrote:
My .dovecot.sieve file is in the form SNIP And activity of explicit fileintos is not logged, even if actual filtering is done.
Ok, I was looking for the wrong entries in my logs, figured this out.
Thanks
-- Luca Corti PGP Key ID 1F38C091 Adesso dico: "Fede."
participants (3)
-
Christian Kratzer
-
Luca Corti
-
Marcus Rueckert