This is a example(not completed):
------------------------------------------------
############################################################################
# Authenticatee data
############################################################################
AUTH_LOOKUP_URL = LDAP_BASEDN?uid,sendToExternalSystem,userPassword?sub? \
(uid=${if eq{$authenticated_id}{} {$1}{$authenticated_id}})
AUTH_USER_DATA = ${lookup ldap{AUTH_LOOKUP_URL}}
AUTH_USER_PASS = ${extract {userPassword} {AUTH_USER_DATA}}
################################################################################
# Authenticators
################################################################################
begin authenticators
ldap_login:
driver = plaintext
public_name = LOGIN
server_prompts = Username:: : Password::
server_condition = ${if crypteq {$2} {AUTH_USER_PASS} {yes}{no}}
server_set_id = $1
ldap_cram_md5:
driver = cram_md5
public_name = CRAM-MD5
server_secret = ${AUTH_USER_PASS}
server_set_id = $1
----- Original Message -----
From: "Kevin M. Barrett" <kmb@???>
To: <exim-users@???>
Sent: Friday, September 12, 2003 10:49 AM
Subject: [Exim] Is there a good reference of complete Configs?
> All,
>
> I'm struggling with getting AUTH working without actually understanding
> all of what it is I need to do. Is there a set of configs that are posted
> somewhere that I can look at to see how to do different forms of AUTH. I'm
> replacing an Exchange server that was doing Auth for relay control with a
> Linux Box and Exim. Any help that you can send my way would be great.
>
> Kevin
>
>
>
> --
>
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>
>