Re: [Dovecot] To query two SQL tables for user verification over LMTP, should I use (a) two separate lookups? or (b) just one lookup with a boolean query?

2011-10-11 Thread Patrick Domack
postfix delivers to the user, and I don't do lmtp authentication, I just submit the email from postfix to lmtp. I'm not even sure how you can use lmtp authentication to verify a delivery address, normally when postfix uses lmtp the email was accepted, and therefor would generate a bounce.

Re: [Dovecot] To query two SQL tables for user verification over LMTP, should I use (a) two separate lookups? or (b) just one lookup with a boolean query?

2011-10-11 Thread jake0534
On Tuesday, October 11, 2011 8:37 AM, Patrick Domack patric...@patrickdk.com wrote: postfix delivers to the user, and I don't do lmtp authentication, I just submit the email from postfix to lmtp. Ok, then we have different approaches. So you are using *only* Postfix to check if a received

Re: [Dovecot] using ecc-certificates (ellyptic curve) will not establish connection

2011-10-11 Thread Fresel Michal - hi competence e.U.
hi building 2.0.15 (f6a2c0e8bc03) against the 10.0e ssl-libs _WORKS_ (on some parts ;) Note: be careful on the client-side as many clients won't understand these types of certificates check the version of openssl if you have problems ... a client on OS X 10.6 (OpenSSL 0.9.8r 8 Feb 2011)

[Dovecot] dovecot2 auth-worker socket perms ignoring assigned ownership settings in conf.d/10-master.conf?

2011-10-11 Thread mephistopheles
I have Dovecot2 auth setup to run as user = doveauth group = dovecot configured in, vi conf.d/10-master.conf ... service auth { unix_listener /var/spool/postfix/private/auth { user

Re: [Dovecot] To query two SQL tables for user verification over LMTP, should I use (a) two separate lookups? or (b) just one lookup with a boolean query?

2011-10-11 Thread Patrick Domack
I'm totally confused by your authenticated as valid part, lmtp doesn't authenticate anything. How do you let postfix know about valid recipients, I don't really care about authenticated ones, just valid ones, and if you do that at lmtp time, postfix has already received the email, and

Re: [Dovecot] dovecot2 auth-worker socket perms ignoring assigned ownership settings in conf.d/10-master.conf?

2011-10-11 Thread mephistopheles
On Tuesday, October 11, 2011 7:53 PM, Paul B. Henson hen...@acm.org wrote: You need an extra piece here: service auth-worker { user = $default_internal_user unix_listener auth-worker { user = postfix } } Maybe being too literal, or misunderstanding

Re: [Dovecot] dovecot2 auth-worker socket perms ignoring assigned ownership settings in conf.d/10-master.conf?

2011-10-11 Thread mephistopheles
It was *not* easy to figure that out; none of the postfix/dovecot how-to's have been updated for dovecot 2. Fwiw, this looks useful Authentication process user http://wiki2.dovecot.org/UserIds Trying to get those $default_... redefined. No luck yet.

Re: [Dovecot] dovecot2 auth-worker socket perms ignoring assigned ownership settings in conf.d/10-master.conf?

2011-10-11 Thread Paul B. Henson
On Tue, Oct 11, 2011 at 08:20:13PM -0700, mephistophe...@operamail.com wrote: Maybe being too literal, or misunderstanding your 'extra', I changed to, Hmm, I just cut-and-pasted my config :), the missing piece was the unix_listener subconfig user, the user/group part in the service config

Re: [Dovecot] dovecot2 auth-worker socket perms ignoring assigned ownership settings in conf.d/10-master.conf?

2011-10-11 Thread mephistopheles
Sorry for any confusion. np. issue solved. for my config, ... service auth-worker { user = doveauth unix_listener auth-worker { user = doveauth } } ... then service