[Dovecot] Upgrade Question about mail_location

2009-09-16 Thread John Dubchak
Hi, I plan on upgrading from 1.1.13 to 1.2.4 using an RPM. I have read the wiki [1] and have a question about the mail_location variable. Currently, in 1.1.13, I use: mail_location = maildir:/var/spool/virtual_mailboxes/%h with virtual mailboxes. However, I am planning to change it to use:

Re: [Dovecot] Upgrade Question about mail_location

2009-09-16 Thread Timo Sirainen
On Sep 16, 2009, at 12:42 PM, John Dubchak wrote: mail_location = maildir:/var/spool/virtual_mailboxes/%h with virtual mailboxes. However, I am planning to change it to use: home=/var/spool/virtual_mailboxes mail_location = maildir:%h Where does home come from? What userdb do you use?

Re: [Dovecot] Upgrade Question about mail_location

2009-09-16 Thread John Dubchak
On Wed, 2009-09-16 at 13:03 +0200, Timo Sirainen wrote: On Sep 16, 2009, at 12:42 PM, John Dubchak wrote: Where does home come from? What userdb do you use? Hi Timo, Thanks for your reply. I guess I must have misread the wiki. Here is my current conf settings: dovecot -n # 1.1.13:

Re: [Dovecot] Upgrade Question about mail_location

2009-09-16 Thread Timo Sirainen
On Sep 16, 2009, at 1:11 PM, John Dubchak wrote: passdb: driver: sql args: /etc/dovecot-sql.conf userdb: driver: prefetch I am using PostgreSQL for a database backend. I guess my real question, then, is how do I use the new mail_location when I want it to point to

Re: [Dovecot] dovecot-auth stops responding

2009-09-16 Thread Jonathan Siegle
process? Yes. Also having auth_debug=yes enabled might show something useful. What does it log last before it stops responding? I found something in syslog today: local0.log.20090916:Sep 16 11:58:01 tr27n18.aset.psu.edu dovecot: auth (default): BUG: Worker sent reply with id 1, expected 2 local0

Re: [Dovecot] dovecot-auth stops responding

2009-09-16 Thread Jonathan Siegle
On Sep 16, 2009, at 1:35 PM, Jonathan Siegle wrote: On Sep 10, 2009, at 2:43 PM, Timo Sirainen wrote: Yes. Also having auth_debug=yes enabled might show something useful. What does it log last before it stops responding? I found something in syslog today: local0.log.20090916:Sep 16 11

[Dovecot] signal 10 error under dovecot 1.1.8

2009-09-16 Thread Thomas M Goerger
Hi, We're seeing a new error under Dovecot 1.1.8 that we haven't seen before. Sep 14 09:00:10 hostname dovecot: [ID 684838 local6.error] child 638 (imap) killed with signal 10 This is being seen under dovecot 1.1.8, on Solaris 10u6. This is the only server we've got running this software.

Re: [Dovecot] signal 10 error under dovecot 1.1.8

2009-09-16 Thread Timo Sirainen
On Sep 16, 2009, at 10:57 PM, Thomas M Goerger wrote: We're seeing a new error under Dovecot 1.1.8 that we haven't seen before. Sep 14 09:00:10 hostname dovecot: [ID 684838 local6.error] child 638 (imap) killed with signal 10 Can you get a gdb backtrace? Otherwise it's a bit difficult to

Re: [Dovecot] Secondary groups from ldap

2009-09-16 Thread Timo Sirainen
On Sep 16, 2009, at 5:18 AM, Ian Levesque wrote: I'm trying to configure my user_attrs using LDAP as the userdb so that dovecot knows what secondary groups a user is a member of. The LDAP backend is an Open Directory implementation, which stores secondary group affiliations as memberUid

Re: [Dovecot] Upgrade Question about mail_location

2009-09-16 Thread John Dubchak
On Wed, 2009-09-16 at 17:12 +0200, Timo Sirainen wrote: On Sep 16, 2009, at 1:11 PM, John Dubchak wrote: mail_location = maildir:%h and change your SQL query to return something like: password_query = select .., '/var/spool/virtual_mailboxes/' || maildir_path as userdb_home, ..