Re: [Exim] AUTH (don't shoot me...)

Góra strony
Delete this message
Reply to this message
Autor: Kirill Miazine
Data:  
Dla: exim-users
Temat: Re: [Exim] AUTH (don't shoot me...)
mike wrote:

> Hello
>
> I've got an Exim 3.35.
> I have uncommented the auth section in config file:
>
> 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


server_condition is wrong and so is server_set_id. $2 contains the
username and $3 contains the password. $1 is empty.

--
    -- K.M.