Re: [Exim] SMTP Authentication

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Kirill Miazine
Datum:  
To: exim-users
Betreff: Re: [Exim] SMTP Authentication
* Søren Hansen [2002-07-12 13:31]:
> I'm quite new at Exim, and I'm having a bit of trouble getting SMTP
> authentication to work.
>
> Here are the relevant bits of exim.conf:
>
> host_auth_accept_relay = *
>
> plain:
> driver = plaintext
> public_name = PLAIN
> server_condition = "${if
> crypteq{$2}{${extract{1}{:}{${lookup{$1}lsearch{/etc/exim/passwd}{$value}{*:*}}}}}{1}{0}}"
> server_set_id = $1


Username is stored in $2 and password in $3 in your case, $1 blank no
matter what you supply as username. You want to rewrite server_condition
to reflect that.

--
Kirill