[Exim] [Exim]Howto-User SASL-AUTH IN Exim

Etusivu
Poista viesti
Vastaa
Lähettäjä: James Wu
Päiväys:  
Vastaanottaja: exim-users
Aihe: [Exim] [Exim]Howto-User SASL-AUTH IN Exim
This is a multi-part message in MIME format.
--
[ Picked text/plain from multipart/alternative ]
Hello:
      someone can tell me how to user sasl2-bin in Exim 4.30?
I'm try edit my config add:
CYRUS_SASLAUTHD_SOCKET=/var/run/saslauthd/mux


AUTH_CRAM_MD5=yes
AUTH_PLAINTEXT=yes
AUTH_SPA=yes

plain:
driver = plaintext
public_name = PLAIN
server_prompts = :
server_condition = ${if saslauthd{$2:$3:smtp}{1}{0}}
server_set_id = $2

plain_saslauthd:
driver = plaintext
public_name = PLAIN
server_advertise_condition = ${if eq{$tls_cipher}{}{0}{1}}
server_condition = ${if saslauthd{{$2}{$3}}{1}{0}}
server_set_id = $2
server_prompts = :

and add debian-exim to sasl group
then i telnet localhost 25

debian:/etc/exim4/conf.d/auth# telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 test.com ESMTP Exim 4.30 Thu, 19 Feb 2004 16:13:24 +0800
ehlo localhost
250-test.com Hello localhost [127.0.0.1]
250-SIZE 52428800
250-PIPELINING
250-AUTH PLAIN
250 HELP

when i use outlook express send a mail i get a error log
2004-02-19 15:37:23 login authenticator failed for (Megan) [222.33.44.55]: 435 Unable to authenticate at present (set_id=megan): too few arguments or bracketing error for saslauthd

Some can tell me why my sasl-auth if fail?
Thanks your help.
--