SMTP server Authentication (from own mail client)

hello,

I need to sent AUTH string to my SMTP server. Please, is somebody able to give me advice, or full string rather, about ATH's format.

for example, how its looking for : user="abcde" , password= "m_pass"?

A lot of thanks

out.println( "HELO " + host );

// AUTH

out.println( "AUTH");?

str=in.readLine();

[357 byte] By [BugsWarriora] at [2007-11-27 10:41:18]
# 1

For all I know, athentication data is Base-64-encoded. Example here:

http://www.ietf.org/rfc/rfc2554.txt

CeciNEstPasUnProgrammeura at 2007-7-28 19:11:52 > top of Java-index,Java Essentials,Java Programming...
# 2

Yes, I read it before, but frankly speaking their exmple

C: MAIL FROM:<e=mc2@example.com> AUTH=e+3Dmc2@example.com

is snot simply translaate to java code.

BugsWarriora at 2007-7-28 19:11:52 > top of Java-index,Java Essentials,Java Programming...