9 Mar
2007
9 Mar
'07
6:25 p.m.
On Fri, 2007-03-09 at 17:10 +0100, Joan wrote:
We have a big installation with postfix + dovecot + sieve. Now we would like to create a "junk" folder in every customer inbox so they can discard the spam by they own. We are planning to user global_script_path = /etc/dovecot/dovecot.sieve Where /etc/dovecot/dovecot.sieve is:
require "fileinto"; if exists "X-Spam-Flag" { fileinto "Junk"; }
My question is, will the script find the users in our database? And how, will it be using the lda configuration?
If you have deliver already working without Sieve (as described in http://wiki.dovecot.org/LDA), then the Sieve plugin uses the exact same configuration and there's nothing extra that you need to do.