This is a discussion on relayhost smtp TLS/SASL auth within the alt.comp.mail.postfix forums, part of the Mail Servers and Related category; Hi folks, I managed to configure my postfix server on my local machine to relay all mails to a smtp ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi folks,
I managed to configure my postfix server on my local machine to relay all mails to a smtp server with a TLS auth. I used the configuration we can find everywhere in google : smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/saslpasswd smtp_sasl_security_options = noplaintext, noanonymous relayhost = notus.esiea.fr It was with a version 1.x of postfix. Now i'm trying to do the same thing with a postfix v2.x But as said here : http://www.thecabal.org/~devin/postfix/smtp-auth.txt it cant work :( Effectively i'm getting errors about a SASL MECH: Mar 25 18:21:54 atelier33 postfix/smtp[3019]: warning: SASL authentication failure: No worthy mechs found Mar 25 18:21:54 atelier33 postfix/smtp[3024]: AD018EE2: to=<passe@clope.net>, relay=notus.esiea.fr[194.57.201.210], delay=54163, status=deferred (Authentication failed: cannot SASL authenticate to server notus.esiea.fr[194.57.201.210]: no mechanism available) After a lot of googling i only can find people with the same problem but no apparently no solutions... If anyone got an idea 'bout that, you are welcome :) -- Alexandre Ahmim-Richard passe@clope.net http://www.u-admin.org |
|
|||
|
Hi,
On Fri, 25 Mar 2005 18:49:44 +0100, Alexandre Ahmim-Richard wrote: > Mar 25 18:21:54 atelier33 postfix/smtp[3019]: warning: SASL authentication > failure: No worthy mechs found Mar 25 18:21:54 atelier33 > postfix/smtp[3024]: AD018EE2: to=<passe@clope.net>, > relay=notus.esiea.fr[194.57.201.210], delay=54163, status=deferred > (Authentication failed: cannot SASL authenticate to server > notus.esiea.fr[194.57.201.210]: no mechanism available) looks like you haven't installed any SASL Mechanism. For example: Debian has packages called libsasl2-modules*. These packages aren't installed automatically but are needed for the authentication. cu hps |
|
|||
|
Peter Senft wrote:
> Hi, > Hi, >>Mar 25 18:21:54 atelier33 postfix/smtp[3019]: warning: SASL authentication >>failure: No worthy mechs found Mar 25 18:21:54 atelier33 >>postfix/smtp[3024]: AD018EE2: to=<passe@clope.net>, >>relay=notus.esiea.fr[194.57.201.210], delay=54163, status=deferred >>(Authentication failed: cannot SASL authenticate to server >>notus.esiea.fr[194.57.201.210]: no mechanism available) > > looks like you haven't installed any SASL Mechanism. For example: Debian > has packages called libsasl2-modules*. These packages aren't installed > automatically but are needed for the authentication. > Yep, it was the problem, after installing that package it works :-) Thanks. -- Alexandre Ahmim-Richard passe@clope.net http://www.u-admin.org |