Re: [Exim] SMTP authenticator examples?

Top Page
Delete this message
Reply to this message
Author: Gareth Down
Date:  
To: Suresh Ramasubramanian
CC: exim-users
Subject: Re: [Exim] SMTP authenticator examples?
This method works for me:

I copied /etc/shadow to /etc/shadow.exim, I don't know why I did this! - It
could have just been in case it caused a problem. There is no need really,
but it works anyway.

I can tell you that the config examples (I think it's C034) doesn't work
because in the example just below it was written as $2, $3, which is wrong
for outlook.

It's possible that there is one missing here, (maybe for eudora or
something) and also I haven't tested the netscape one.

# OUTLOOK EXPRESS METHOD
plain:
  driver = plaintext
  public_name = LOGIN
  server_prompts = "Username:: : Password::"
  server_condition = "${if and {{!eq{$1}{}}{!eq{$2}{}} \
    {crypteq{$2}{${extract{1}{:} \
    {${lookup{$1}lsearch{/etc/shadow.exim}{$value}{*:*}}}}}}}{1}{0}}"
  server_set_id = $1


# NETSCAPE METHOD

netscape:
  driver = plaintext
  public_name = PLAIN
  server_condition = "${if and {{!eq{$1}{}}{!eq{$2}{}} \
    {crypteq{$2}{${extract{1}{:} \
    {${lookup{$1}lsearch{/etc/shadow.exim}{$value}{*:*}}}}}}}{1}{0}}"
  server_set_id = $1


Gareth Down
gjd@???
www.ihostweb.net

----- Original Message -----
From: Suresh Ramasubramanian <mallet@???>
To: Mark Lehrer <mark@???>
Cc: <exim-users@???>
Sent: Tuesday, March 26, 2002 3:14 AM
Subject: Re: [Exim] SMTP authenticator examples?


> Mark Lehrer <mark@???> writes:
>
> > Hello. I am trying to set up authenticators in exim. Are there
> > any good examples available? I spent some time searching the mailing
> > list archives but didn't see anything useful.
>
> ftp.exim.org has a tarball "config.samples.tar.gz" - get it.
>
>              -srs

>
>