Re: [Dovecot] bug formatting results when using doveadm-server

2012-10-03 Thread Angel L. Mateo
El 02/10/12 21:38, Timo Sirainen escribió: On 26.9.2012, at 13.55, Angel L. Mateo wrote: doveadm search -S /var/run/dovecot/auth-userdb -u ${user} SAVEDSINCE 5w | while read guid uid; do doveadm fetch -S /var/run/dovecot/auth-userdb -u ${user} size.physical mailbox-guid $guid uid $uid;

Re: [Dovecot] Syntax for doveadm auth cache

2012-10-03 Thread Angel L. Mateo
El 02/10/12 22:18, Timo Sirainen escribió: On 2.10.2012, at 11.41, Angel L. Mateo wrote: I've been doing some more tests with this problem I have (I need to solve it because I'm planning to migrate mailboxes from maildir to mdbox and I need to change mail_location for my users

Re: [Dovecot] Syntax for doveadm auth cache

2012-10-03 Thread Timo Sirainen
On 3.10.2012, at 9.25, Angel L. Mateo wrote: I think I have found the source of the problem, although I don't know how to fix it. The problem is that I have different results if I ask for user information with just the login or with the whole email: Flush both the user and user@domain

Re: [Dovecot] bug formatting results when using doveadm-server

2012-10-03 Thread Timo Sirainen
On 3.10.2012, at 9.20, Angel L. Mateo wrote: El 02/10/12 21:38, Timo Sirainen escribió: On 26.9.2012, at 13.55, Angel L. Mateo wrote: doveadm search -S /var/run/dovecot/auth-userdb -u ${user} SAVEDSINCE 5w | while read guid uid; do doveadm fetch -S /var/run/dovecot/auth-userdb -u

Re: [Dovecot] [PATCH] Add SCRAM-SHA-1 password scheme

2012-10-03 Thread Florian Zeitz
Am 03.10.2012 02:50, schrieb Timo Sirainen: On Wed, 2012-10-03 at 02:10 +0200, Florian Zeitz wrote: Attached is a new export incorporating your feedback. Committed. Also what do you think about the attached patch? (Compiles, untested.) Moving the passdb parsing into a separate function

[Dovecot] LDA vs LMTP index files

2012-10-03 Thread l...@airstreamcomm.net
In the docs it states that LDA ...takes mail from anMTAand delivers it to a user's mailbox, while keeping Dovecot index files up to date. I am wondering if LMTP also interacts with the Dovecot index files and keeps them up to date?

Re: [Dovecot] LDA vs LMTP index files

2012-10-03 Thread Jack Bates
On 10/3/2012 9:34 AM, l...@airstreamcomm.net wrote: In the docs it states that LDA ...takes mail from anMTAand delivers it to a user's mailbox, while keeping Dovecot index files up to date. I am wondering if LMTP also interacts with the Dovecot index files and keeps them up to date?

Re: [Dovecot] LDA vs LMTP index files

2012-10-03 Thread Charles Marcus
On 2012-10-03 10:34 AM, l...@airstreamcomm.net l...@airstreamcomm.net wrote: In the docs it states that LDA ...takes mail from anMTAand delivers it to a user's mailbox, while keeping Dovecot index files up to date. I am wondering if LMTP also interacts with the Dovecot index files and keeps

Re: [Dovecot] LDA vs LMTP index files

2012-10-03 Thread Jack Bates
On 10/3/2012 10:03 AM, Charles Marcus wrote: On 2012-10-03 10:34 AM, l...@airstreamcomm.net l...@airstreamcomm.net wrote: In the docs it states that LDA ...takes mail from anMTAand delivers it to a user's mailbox, while keeping Dovecot index files up to date. I am wondering if LMTP also

Re: [Dovecot] possible nfs issue

2012-10-03 Thread Patrick Domack
Maybe it's a cross program issue? We used to randomly have this happen a long time ago, when using postfix and dovecot. Since switching to using the dovecot lda/lmtp instead of postfix for mailbox delievery, I haven't seen this happen at all anymore. I'm not saying that postfix is at

[Dovecot] LMTP userdb lookup

2012-10-03 Thread l...@airstreamcomm.net
Is it possible to have separate userdb lookups for LMTP and POP/IMAP?

[Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Marc Perkel
Hi, I'm looking for some advice to do a really advanced trick with Dovecot. I'm not sure if this can be done. I need to describe first. I have a spam filtering company that does front end spam filtering. (Junk Email Filter) I want to add a system where I store a copy of spam on a server and

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Eduardo Casarero
Hi Marc, i solved this using an automated report for users quarantine. In front of dovecot i have 2 mailscanner boxes that stores spam emails in quarantine and logs them to a database, periodically there is a script that sends an html report to users that recieved spam in the last interval (1h,

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Steve Campbell
If you ever figure out how to do this, I've got an excellent name for it: MailWatch http://sourceforge.net/projects/mailwatch/ steve On 10/3/2012 3:48 PM, Marc Perkel wrote: Hi, I'm looking for some advice to do a really advanced trick with Dovecot. I'm not sure if this can be done. I need

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Timo Sirainen
Maildir, layout=fs /var/vmail/domain/user/ Spams get delivered there. User has access there. Domain admin has mail_location=/var/vmail/domain, you have mail_location=/var/vmail -- Sent from my Android phone with K-9 Mail. Please excuse my brevity. Marc Perkel m...@perkel.com wrote: Hi, I'm

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Håkon Alstadheim
On 03. okt. 2012 21:48, Marc Perkel wrote: Hi, I'm looking for some advice to do a really advanced trick with Dovecot. I'm not sure if this can be done. I need to describe first. I have a spam filtering company that does front end spam filtering. (Junk Email Filter) I want to add a system

Re: [Dovecot] LMTP userdb lookup

2012-10-03 Thread Timo Sirainen
On 3.10.2012, at 22.26, l...@airstreamcomm.net wrote: Is it possible to have separate userdb lookups for LMTP and POP/IMAP? protocol lmtp { userdb { .. } } protocol !lmtp { userdb { .. } }

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Marc Perkel
I'm a little confused. What about the cur, new, and tmp directories? How does that fit in? On 10/3/2012 1:04 PM, Timo Sirainen wrote: Maildir, layout=fs /var/vmail/domain/user/ Spams get delivered there. User has access there. Domain admin has mail_location=/var/vmail/domain, you have

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Timo Sirainen
On 4.10.2012, at 2.42, Marc Perkel wrote: On 10/3/2012 1:04 PM, Timo Sirainen wrote: Maildir, layout=fs /var/vmail/domain/user/ Spams get delivered there. User has access there. Domain admin has mail_location=/var/vmail/domain, you have mail_location=/var/vmail I'm a little confused.

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Marc Perkel
On 10/3/2012 4:46 PM, Timo Sirainen wrote: On 4.10.2012, at 2.42, Marc Perkel wrote: On 10/3/2012 1:04 PM, Timo Sirainen wrote: Maildir, layout=fs /var/vmail/domain/user/ Spams get delivered there. User has access there. Domain admin has mail_location=/var/vmail/domain, you have

Re: [Dovecot] possible nfs issue

2012-10-03 Thread Kelsey Cummings
On 10/2/2012 2:39 PM, Cor Bosman wrote: Anyone else with NFS mailspools seeing this? Yes, it is like 1999 all over again. I haven't had a chance to track them down or setup a cron job to rm them all. All of the ones I'm seeing are ex dovecot.index files but it looks like yours are ex

Re: [Dovecot] Advanced dovecot tricks - spam review/release

2012-10-03 Thread Marc Perkel
On 10/3/2012 4:46 PM, Timo Sirainen wrote: On 4.10.2012, at 2.42, Marc Perkel wrote: On 10/3/2012 1:04 PM, Timo Sirainen wrote: Maildir, layout=fs /var/vmail/domain/user/ Spams get delivered there. User has access there. Domain admin has mail_location=/var/vmail/domain, you have

[Dovecot] Getting rid of the subscription file

2012-10-03 Thread Marc Perkel
I'd like to eliminate the subscription file and have it just list the folders that are there. How do I do that? Thanks in advance.

Re: [Dovecot] Getting rid of the subscription file

2012-10-03 Thread Daniel Parthey
Marc Perkel wrote: I'd like to eliminate the subscription file and have it just list the folders that are there. How do I do that? Dovecot allows to automatically subscribe folders when mails are delivered: lda_mailbox_autosubscribe = yes RFC 3501 tells that the server side MUST NOT

Re: [Dovecot] Getting rid of the subscription file

2012-10-03 Thread Marc Perkel
On 10/3/2012 9:58 PM, Daniel Parthey wrote: Marc Perkel wrote: I'd like to eliminate the subscription file and have it just list the folders that are there. How do I do that? Dovecot allows to automatically subscribe folders when mails are delivered: lda_mailbox_autosubscribe = yes RFC 3501