Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-28 Thread Eliezer Croitoru
On 10/27/2012 11:03 PM, Stephan Bosch wrote: This is most likely a client problem. Have you configured your client to check that folder? Yes unless there there is a special thing I dont know yet about in Thunderbird. Thanks, Eliezer -- Eliezer Croitoru https://www1.ngtech.co.il IT consulting

Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-27 Thread Stephan Bosch
On 10/25/2012 9:16 AM, Eliezer Croitoru wrote: My only problem is that it will put the file in the folder but will not mark the folder with the new file until I actually check the folder manually. it's not that much hustle but if there is a way to solve it I will be more then happy to hear abou

Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-25 Thread Eliezer Croitoru
On 10/23/2012 9:40 PM, Stephan Bosch wrote: Also, could you provide your full configuration as output from `dovecot -n` ? Regards, Stephan. Thanks Stephan, I just upgraded from 2.0.17 to 2.1.9 and ph 0.3.1 (gentoo) and it seems to work as expected and dont leave any traces in the INBOX with

Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-23 Thread Bill Shirley
On 10/23/2012 11:19 AM, Eliezer Croitoru wrote: Since I have lots of filtering rules in thunderbird I was thinking of using sieve instead. I want to filter incoming mail into subdirectories. like "from" store at folder "old". the script is: require ["fileinto", "envelope"]; if envelope :is "fro

Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-23 Thread Stephan Bosch
On 10/23/2012 5:19 PM, Eliezer Croitoru wrote: Since I have lots of filtering rules in thunderbird I was thinking of using sieve instead. I want to filter incoming mail into subdirectories. like "from" store at folder "old". the script is: require ["fileinto", "envelope"]; if envelope :is "from"

Re: [Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-23 Thread Dennis Guhl
On Tue, Oct 23, 2012 at 05:19:04PM +0200, Eliezer Croitoru wrote: [..] > the script is: > require ["fileinto", "envelope"]; > if envelope :is "from" "elie...@test.dom" { > fileinto "old"; stop; # seems to be needed with explicit keep > } else { > # The rest goes into INBOX > # def

[Dovecot] Problem with sieve. dovecot 2.0.17

2012-10-23 Thread Eliezer Croitoru
Since I have lots of filtering rules in thunderbird I was thinking of using sieve instead. I want to filter incoming mail into subdirectories. like "from" store at folder "old". the script is: require ["fileinto", "envelope"]; if envelope :is "from" "elie...@test.dom" { fileinto "old"; } else {