I was having problems for the longest time when sending email from Outlook/Outlook Express using SMTP Auth. I just recently got it working.
I'm using port 7075 as the port I connect to from home. I configured it in master.cf as this--just below the smtp entry:
Code:
smtp inet n - n - - smtpd
7075 inet n - n - - smtpd
What I forgot to do was copy the args that go with it. It should have looked like this:
Code:
smtp inet n - n - - smtpd
7075 inet n - n - - smtpd
-o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes I'm not sure if this is your problem. But, I thought I would post it because your symptoms sounded similar to mine.
Ray