On 01/11/2018 11:49 AM, Aki Tuomi wrote:
On 11.01.2018 11:45, CP wrote:
Hello list,
I'm trying to setup sieve on a Debian 9 install with virtual users. Perhaps I'm getting old, but I can't figure out why managesieve is not working for virtual users. I have about 20 v users on this machine and only one has also a real unix account. The sieve rules work for this single unix account but not for any other account. I have read tried various HOWTO's found on the net like this :
https://forum.vestacp.com/viewtopic.php?t=11363
but nothing is working for my case, so something is wrong in my setup and I hope you guys might shed some light . The setup is rather simple it's 20 v users with one public folder , I have tried both dovecot lda and lmtp .
doveconf -n included
Thanks in advance for any help Hi!
Can you enable mail_debug=yes in dovecot config and see what Sieve says for those rules. Also can you provide sieve rules. The sieve rules in your config file are per-user rules, managesieved does not actually do sieve processing, but provides ability to manage sieve rules remotely.
Aki
I have already done it but I can't really tell what I 'm supposed to see in the log
this is a line for a message without matching rule :
Jan 09 23:07:48 lda(xxxx@xxxxxx.xxx): Info: sieve: msgid=<849d7f91-fdd3-4c07-8039-9e00acfefd2e_2961dc3c-f238-4f72-ad8e-02b1c779e6b5@SYSTEM5.de.local>: stored mail into mailbox 'INBOX'
and this with a working rule:
Jan 10 01:00:04 lda(xxxx@xxxxxx.xxx): Info: sieve: msgid=<20180109230004.1BC1344773@xxx.xxxxx.xxx>: stored mail into mailbox 'INBOX/Postfix'
both are with lda delivery
and with lmtp :
Jan 11 01:00:04 lmtp(xxxx@xxxxxx.xxx): Info: QVkQD/SaVloKFQAAyyBr5g: sieve: msgid=<20180110230003.D577A42C77@xxx.xxxxxx.xxx>: stored mail into mailbox 'INBOX/Postfix' Jan 11 01:00:04 lmtp(5386): Info: Disconnect from local: Successful quit
The rule is pretty simple actually :
require ["fileinto"]; # rule:[Bad] if header :is "subject" "Bad Filename Detected" { fileinto "INBOX/BAD"; stop; } # rule:[postfix] if allof (header :is "subject" "Postfix Dailly logcheck") { fileinto "INBOX/Postfix"; stop; }
And this is a sample rule from a v user that doesn't work :
require ["fileinto"]; # rule:[1] if header :is "from" "xxx@xxxxxxx.com" { fileinto "INBOX/9 - 1"; }
The thing is I expected more verbosity from sieve . is there some option to to turn more verbose messages on ?