Re: [Dovecot] Global Script to filter Spam

2008-07-11 Thread Timo Sirainen
On Tue, 2008-07-08 at 11:19 -0300, Andrés Yacopino wrote: > 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 configure

Re: [Dovecot] Global Script to filter Spam

2008-07-08 Thread Lucas Carlessi
Add: global_script_path = /home/vmail/globalsieverc in your dovecot.conf and in /home/vmail/globalsieverc: require ["fileinto"]; # Move spam to spam folder if header :contains "X-Spam-Flag" ["YES"] { fileinto "spam"; stop; } ___ Lucas On Tue, 08