--
On Fri, Jan 24, 2003 at 08:10:39PM +0500, Artem S. Tashkinov wrote:
> My probelm is that exim doesn't want to supply any kind of
> authentification for users' MTA. Although I wrote these lines to my exim
> config:
> ...
> tls_advertise_hosts = *
> auth_advertise_hosts = *
> ...
>
> and these lines to Makefile
> ...
> AUTH_CRAM_MD5=yes
> AUTH_PLAINTEXT=yes
> AUTH_SPA=yes
> ...
you have to configure your authenticators in the exim
configuration file
examples:
plain:
driver = plaintext
public_name = PLAIN
server_condition = "${if crypteq{$3}{${extract{1}{:}{\
${lookup{$2}\
lsearch{/etc/exim/auth/auth.passwd}\
{$value}{*:*}}}}}{1}{0}}"
server_set_id = $2
login:
driver = plaintext
public_name = LOGIN
server_prompts = "Username:: : Password::"
server_condition = "${if crypteq{$2}{${extract{1}{:}{\
${lookup{$1}\
lsearch{/etc/exim/auth/auth.passwd}\
{$value}{*:*}}}}}{1}{0}}"
server_set_id = $1
see
http://www.exim.org/exim-html-4.10/doc/html/spec.html
regards
>
> when I connect (telnet 127.0.0.1 25) to it, it just says
> ehlo birdie
> 250-main.myhost.ru Hello localhost.localdomain [127.0.0.1]
> 250-SIZE 7340032
> 250-8BITMIME
> 250-PIPELINING
> 250-STARTTLS
> 250 HELP
>
> how can I solve this problem?
>
>
>
> --
>
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim
> details at http://www.exim.org/ ##
>
--
René Küttner NetKom GmbH, Administration
rkuettner@??? Gewerbepark Mockritz, 04720 Döbeln
PGP Fingerprint: 548C C10B C40E 3AE4 B030 61B9 35F3 B801 8DF6 41AD
PGP Public-Key:
http://in-doebeln.de/~rene/pubkey.asc
--
[ Content of type application/pgp-signature deleted ]
--