On Sat, Nov 13, 2010 at 12:08:58AM +0000, Pete wrote: > On Sat, Nov 13, 2010 at 12:56:06AM +0100, Jeroen Geilman wrote: > > On 11/13/2010 12:34 AM, Pete wrote: > > >Hello all, > > > > > >I have finally attained the unenviable position of being able to > > >effortlessly see > > >the entire wood without being able to clearly identify a single tree. IOW, > > >I'm > > >completely stuck. > > > > > >OS = Centos 5.5 (2.6.18-194.26.1.el5) x86_64 > > >Postfix = postfix-2.3.3-2.1.el5_2 > > >Dovecot = dovecot-1.0.7-7.el5 > > > > > >Goal = Enable SMTP AUTH using Postfix and Dovecot > > >Problem = Postfix cannot locate a suitable authentication mechanism ? > > [snip configuration] > > > Looks similar to mine in all the essentials, although again, 1.0.7 is > > quite old (I have 1.2.9) > > You'll have to dig in to the dovecot side to find out what is going wrong. > > Thanks for the informative response Jeroen. I will make the changes you > suggested and look further into my dovecot set up. I'll also look into > upgrading Postfix and Dovecot.
This issue has now been resolved. As Jeroen said, I needed to check on what Dovecot was doing. As it turns out, specifically file paths in /etc/dovecot.conf compared to /etc/postfix/main.cf : /etc/dovecot.conf: client { path = /var/spool/postfix/private/auth mode = 0660 user = postfix group = postfix } /etc/postfix/main.cf: smtpd_sasl_path = /var/spool/postfix/private/auth As soon as both paths matched, Dovecot and Postfix were restarted to give the following output : [r...@caprica etc]# telnet localhost 25 Trying 127.0.0.1... Connected to localhost.localdomain (127.0.0.1). Escape character is '^]'. 220 caprica.nrth.lab ESMTP Postfix ehlo localhost 250-caprica.nrth.lab 250-PIPELINING 250-SIZE 15728640 250-ETRN 250-AUTH PLAIN LOGIN 250-AUTH=PLAIN LOGIN 250-ENHANCEDSTATUSCODES 250-8BITMIME 250 DSN quit 221 2.0.0 Bye Thanks very much to Jeroen and John for the tips. Regards, Pete.