(10-22-2010 12:26 AM)Rafioso Wrote: Log sagt folgendes:
Oct 21 16:18:25 Debian-50-lenny-64-LAMP postfix/smtpd[18346]: warning: SASL authentication failure: incorrect NTLM response
Oct 21 16:18:25 Debian-50-lenny-64-LAMP postfix/smtpd[18346]: warning: ****.***.***********.**[000.000.000.000]: SASL NTLM authentication failed: authentication failure
Hello ;
First, what distribution you use ?
It's not really a problem. You have only to create the smtpd.conf file that will allow to inform the clients on the available mechanisms (eg: PLAIN LOGIN).
Creates the following file in the correct directory (eg for debian --> /etc/postfix/sasl/smtpd.conf):
Code:
log_level: 3
pwcheck_method: auxprop
auxprop_plugin: sasldb
mech_list: PLAIN LOGIN
And then restart postfix and try again...
Note: NTLM is authentication protocol made in microsoft... To resume, this SASL authentication method is used mostly by outlook and cie clients... Without the smtpd.conf file, the client ask the server to use this shit because default available methods are PLAIN LOGIN NTLM.