Re: [Exim] Authentication question using 3.35

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Andy Rabagliati
Fecha:  
A: exim-users
Asunto: Re: [Exim] Authentication question using 3.35
On Tue, 26 Aug 2003, gbrotherton@??? wrote:

> Hello Good People,
>
> I am attempting to have my users authenticate remotely to use my Exim 3.35


I have only tried this with 4.22.

> Any help/advice on how to implement remote authentication would be greatly
> appreciated. The a copy of the bottom of the exim.conf file is:


I have seen this, and it works on a linux (Debian) box, exim 3.x

plain:
driver = plaintext
public_name = PLAIN
server_condition = "${if pam{$2:$3}{1}{0}}"
server_set_id = $1

login:
driver = plaintext
public_name = LOGIN
server_prompts = "Username:: : Password::"
server_condition = "${if pam{$1:$2}{1}{0}}"
server_set_id = $1

It uses PAM - I think most people use plain: .

Cheers, Andy!