We have a big installation with postfix + dovecot + sieve.<br>Now we would like to create a "junk" folder in every customer inbox so they can discard the spam by they own.<br>We are planning to user global_script_path = /etc/dovecot/dovecot.sieve
<br>Where /etc/dovecot/dovecot.sieve is:<br><br>require "fileinto";<br>if exists "X-Spam-Flag" {<br> fileinto "Junk";<br>}<br><br><br>My question is, will the script find the users in our database? And how, will it be using the lda configuration?
<br>I have been for weeks looking for this in the wiki and couldn't find it anywhere.<br>I promise I'll put it in there if I find the clue :)<br>