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

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Kirill Miazine
Ημερομηνία:  
Προς: exim-users
Αντικείμενο: 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.