Autor: John Jetmore
Fecha:
A: Chris Knipe
Cc: exim-users
Asunto: Re: [Exim] smtp auth
On Mon, 28 Apr 2003, Chris Knipe wrote:
> Lo all,
>
> Does anyone have some examples on getting exim4 to authenticate against
> radius??
These worked, I believe, but I never got beyond evaluating radius (we
opted against using it) so these might have problems:
radius_auth_plain:
driver = plaintext
public_name = PLAIN
server_condition = ${if radius{$2:$3}{yes}{no}}
server_set_id = $2
radius_auth_login:
driver = plaintext
public_name = LOGIN
server_prompts = Username:: : Password::
server_condition = ${if radius{$1:$2}{yes}{no}}
server_set_id = $1
--John