Author: Felix Brack Date: To: exim-users Subject: [exim] Problems with AUTH LOGIN
I am using exim 4.60 with multiple authenticators, one of which is the
LOGIN. It seems I have some wrong configuration since a client dose
never get the expected answer from the exim server when issuing the
command "AUTH LOGIN". Following is some trace from the server:
And this is the the authenticator from my configuration file that is
supposed to be used to handle "AUTH LOGIN":
lookup_login:
driver = plaintext
public_name = LOGIN
server_prompts = User Name : Password
server_condition = ${lookup{$1}lsearch{/usr/local/exim/auth.passwd}{${if eq{$value}{$2}{yes}{no}}}{no}}
server_set_id = $1
From the trace I can see that the client issues "AUTH LOGIN".
According to the configuration exim should answer with "User Name" but
it returns "334 VXNlciBOYW1l". This is not expected by the client and
treated as error.
Does anybody know where the error in my configuration could be?