Re: [Dovecot] Using IMAP keywords instead of mailboxes for spam with dovecot-antispam

2008-03-20 Thread Jef Driesen
Jan Oravec wrote: Some email clients, like Evolution, use IMAP keywords to flag spam instead of moving mail to dedicated spam mailbox. This is very useful, as false positives can be easily "moved" to original mailbox simply by removing $Junk keyword. I couldn't find a way how to integrate antisp

[Dovecot] Running dovecot on embedded device?

2011-02-19 Thread Jef Driesen
Hi, I'm considering buying a QNAP TS-212 NAS and I wonder if this device is powerful enough to run dovecot too (there is a pre-built dovecot package available from QNAP)? The main goal would be that my mail is stored centralized on the NAS, where I can access it from multiple systems without e

Re: [Dovecot] Running dovecot on embedded device?

2011-02-23 Thread Jef Driesen
On 20/02/11 06:05, Curtis Maloney wrote: On 20/02/11 09:22, Jef Driesen wrote: I'm considering buying a QNAP TS-212 NAS and I wonder if this device is powerful enough to run dovecot too (there is a pre-built dovecot package available from QNAP)? The main goal would be that my mail is s

Re: [Dovecot] IMAP IDLE goes to sleep

2007-06-26 Thread Jef Driesen
Julian Cowley wrote: configure --without inotify This might be the problem. Without inotify (or one of the other systems), dovecot has to poll the mailbox for changes once in a while. This means clients will receive updates only after each poll cycle, not instantly.

[Dovecot] How do I use sieve to move bounces?

2007-08-24 Thread Jef Driesen
How can I use sieve to move bounces and non delivery reports (i.e. anything with an empty envelope from) to a special mailbox? I placed this snippet at the start of my sieve script require ["envelope", "fileinto"]; if envelope :is "from" "" { fileinto "INBOX.Reports"; stop; } But mails

Re: [Dovecot] How do I use sieve to move bounces?

2007-09-06 Thread Jef Driesen
Jef Driesen wrote: How can I use sieve to move bounces and non delivery reports (i.e. anything with an empty envelope from) to a special mailbox? I placed this snippet at the start of my sieve script require ["envelope", "fileinto"]; if envelope :is "from" &qu