Re: [Exim] Some problems with SMTP Auth..

Etusivu
Poista viesti
Vastaa
Lähettäjä: Dave C.
Päiväys:  
Vastaanottaja: Tim AtLee
Kopio: exim-users
Aihe: Re: [Exim] Some problems with SMTP Auth..

You've got your authenticators in the rewrite section of the config
file, for starters..

Re-read the section of the exim spec at the beginning about the format
of the config file, and its seperate sections.. Make sure the version of
the spec you are reading matches the version of exim that you are using.


On Thu, 13 Dec 2001, Tim AtLee wrote:

> Hello
>
> I've been trying to follow the sample config (I thing C034 is what i was
> reading) for SMTP auth using the /etc/passwd file, but I've sorta hit a
> hiccup that I'm not sure what it means .. in the error log, I get:
>
> 2001-12-13 00:42:55 Exim configuration error
> domain missing in rewrite key string "plain:" in line 397
>
> and would get the same for 'login:' if I comment out all of plain.
>
> The SMTP auth portion of my config file reads as such:
>
> #                        AUTH CONFIGURATION                          #
> plain:     # Line 397
>   driver = plaintext
>   public_name = PLAIN
>   server_condition = "${if and {{!eq{$2}{}}{!eq{$3}{}} \
>   {crypteq{$3}{${extract{2}{:} \
>   {${lookup{$2}lsearch{/etc/passwd}{$value}{*:*}}}}}}}{1}{0}}"
>   server_set_id = $2

>
> login:
> driver = plaintext
> public_name = LOGIN
> server_prompts = "Username:: : Password::"
> server_condition = "${if and {{!eq{$1}{}}{!eq{$2}{}} \
> {crypteq{$2}{${extract{2}{:} \
> {${lookup{$1}lsearch{/etc/passwd}{$value}{*:*}}}}}}}{1}{0}}"
> server_set_id = $1
>
>
> Any help would be greatly appreciated :-)
>
> Thanks,
>
> Tim
>
>
> --
>
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>
>


--