PDA

View Full Version : Postfix question


WonderCody
24th November 2007, 19:10
When I used the guide for an Ubuntu 7.10 server(http://howtoforge.com/perfect_server_ubuntu7.10) I was installing Postfix and when I checked to see if SMTP-AUTH and TLS worked properly it didn't match what I should have gotten. I have the line 250-STARTTLS, but instead of 250-AUTH PLAIN LOGIN and 250-AUTH=PLAIN LOGIN I have 250-AUTH PLAIN DIGEST-MD5 NTLM LOGIN CRAM-MD5 and 250-AUTH=PLAIN DIGEST-MD5 NTLM LOGIN CRAM-MD5

falko
25th November 2007, 13:57
What's in /etc/postfix/sasl/smtpd.conf?

WonderCody
25th November 2007, 17:02
It does not exist.

falko
26th November 2007, 19:25
Then create it as shown on http://www.howtoforge.com/perfect_server_ubuntu7.10_p5 :

echo 'pwcheck_method: saslauthd' >> /etc/postfix/sasl/smtpd.conf
echo 'mech_list: plain login' >> /etc/postfix/sasl/smtpd.conf

Restart Postfix afterwards.

WonderCody
1st December 2007, 20:26
thx so much!