On 5/22/2013 12:42 PM, Peter Skensved wrote: > I've set up dovecot to provide SASL for postfix and as far as I can > tell everything is working correctly. However, when I do a ehlo localhost > I don't see it announcing anything about AUTH : > > Connected to localhost. > Escape character is '^]'. > 220 xxx.yyy.QueensU.CA ESMTP Postfix > ehlo localhost > 250-xxx.yyy.QueensU.CA > 250-PIPELINING > 250-SIZE 40960000 > 250-VRFY > 250-ETRN > 250-STARTTLS > 250-ENHANCEDSTATUSCODES > 250-8BITMIME > 250 DSN > > Am I missing something in the configuration of postfix ( or dovecot ) ? > The log files tell me that it authenticates and entering the wrong password > makes it fail etc. > > peter >
You didn't show your "postconf -n" output, so we're reduced to guessing. Common problem: AUTH seems to be working, but I don't see AUTH announced when I telnet localhost. Typically this means you've set "smtpd_tls_auth_only = yes", which suppresses the AUTH announcement until after an encrypted session is established -- which is a usually good thing. To see the AUTH announcement, either temporarily set "smtpd_tls_auth_only = no", or test with "openssl s_client -connect localhost:25 -starttls smtp" -- Noel Jones