Michael Heitmeier wrote:
> Ok, tried that but still no joy:
> 
> # more esmtproutes
> t-online.de: authmailonline.kundenserver.de
> 
> # more esmtpauthclient
> authmailonline.kundenserver.de user password
> 
> What else should I look at?

Are you *sure* this name and password can do authenticated smtp?  Have
you manually tried to connect to this server and issue an AUTH command
to see if it works like you think?

Here's my manual attempt to authenticate on my own machine.  I use perl
to generate base64 encoded versions of the username, "jeff", and the
password, "password", and then do the auth login.  I would try this with
your username and password connecting to the server manually and make
sure everything works like you think.

[EMAIL PROTECTED]:~> perl -e 'use MIME::Base64; \
> print encode_base64("jeff");'
amVmZg==

[EMAIL PROTECTED]:~> perl -e 'use MIME::Base64; \
> print encode_base64("password");'
cGFzc3dvcmQ=

[EMAIL PROTECTED]:~> telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 ivb.sil.org ESMTP
helo default
250 ivb.sil.org Ok.
auth login
334 VXNlcm5hbWU6
amVmZg==
334 UGFzc3dvcmQ6
cGFzc3dvcmQ=
235 Ok
quit
221 Bye.
Connection closed by foreign host.


Jeff Jansen


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to