Java Mail

DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]

DEBUG SMTP: useEhlo true, useAuth false

DEBUG: SMTPTransport trying to connect to host "appemail.t.com", port 25

DEBUG SMTP RCVD: 220 emailhub22.t.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.1830 ready at Wed, 27 Jun 2007 12:03:59 -0500

DEBUG: SMTPTransport connected to host "appemail.t.com", port: 25

DEBUG SMTP SENT: EHLO waplx101.t.com

DEBUG SMTP RCVD: 250-emailhub22.t.com Hello [172.17.1.45]

250-TURN

250-SIZE

250-ETRN

250-PIPELINING

250-DSN

250-ENHANCEDSTATUSCODES

250-8bitmime

250-BINARYMIME

250-CHUNKING

250-VRFY

250-X-EXPS GSSAPI NTLM

250-AUTH GSSAPI NTLM

250-X-LINK2STATE

250-XEXCH50

250 OK

DEBUG SMTP Found extension "TURN", arg ""

DEBUG SMTP Found extension "SIZE", arg ""

DEBUG SMTP Found extension "ETRN", arg ""

DEBUG SMTP Found extension "PIPELINING", arg ""

DEBUG SMTP Found extension "DSN", arg ""

DEBUG SMTP Found extension "ENHANCEDSTATUSCODES", arg ""

DEBUG SMTP Found extension "8bitmime", arg ""

DEBUG SMTP Found extension "BINARYMIME", arg ""

DEBUG SMTP Found extension "CHUNKING", arg ""

DEBUG SMTP Found extension "VRFY", arg ""

DEBUG SMTP Found extension "X-EXPS", arg "GSSAPI NTLM"

DEBUG SMTP Found extension "AUTH", arg "GSSAPI NTLM"

DEBUG SMTP Found extension "X-LINK2STATE", arg ""

DEBUG SMTP Found extension "XEXCH50", arg ""

DEBUG SMTP Found extension "OK", arg ""

DEBUG SMTP SENT: NOOP

DEBUG SMTP RCVD: 250 2.0.0 OK

DEBUG SMTP: use8bit false

DEBUG SMTP SENT: MAIL FROM:<P.Auto@t.com>

DEBUG SMTP RCVD: 250 2.1.0 P.Auto@t.com....Sender OK

DEBUG SMTP SENT: RCPT TO:<Pat.Sandn@t.com>

DEBUG SMTP RCVD: 250 2.1.5 Pat.Sandn@t.com

DEBUG SMTP SENT: RCPT TO:<Sean.Hod@t.com>

DEBUG SMTP RCVD: 250 2.1.5 Sean.Hok@t.com

DEBUG SMTP SENT: RCPT TO:<OpenSys-Tandem.Tran@t.com>

DEBUG SMTP RCVD: 250 2.1.5 OpenSys-Tandem.Traon@t.com

DEBUG SMTP SENT: RCPT TO:<Jaes.Rouse@t.com>

DEBUG SMTP RCVD: 250 2.1.5 j.Rouse@t.com

DEBUG SMTP SENT: RCPT TO:<IDS.Services@T.com>

DEBUG SMTP RCVD: 250 2.1.5 IDS.Services@t.com

DEBUG SMTP SENT: RCPT TO:<Ay.Gomes@t.com>

DEBUG SMTP RCVD: 250 2.1.5 Any.Gomes@t.com

Verified Addresses

Pat.Saen@t.com

Sean.Hd@t.com

OpenSys-Tandem.@t.com

Jas.Rouse@t.com

IDS.Services@t.com

Any.Gomes@t.com

DEBUG SMTP SENT: DATA

DEBUG SMTP RCVD: 354 Start mail input; end with <CRLF>.<CRLF>

DEBUG SMTP SENT:

.

DEBUG SMTP RCVD: 250 2.6.0 <10032751.1182963839116.JavaMail.oprrip@waplx101.t.com> Queued mail for delivery

can anybody help me why i am getting these errors

waiting for ur valuable reply

Message was edited by:

Ra@v

[3045 byte] By [Ra@va] at [2007-11-27 10:37:55]
# 1

There do not appear to be any errors in your post. If you are wondering why you get DEBUG logs produced it is because you have debug logging enabled. Disable it and the logs will not be produced. Your post indicates that all the emails were properly queued for delivery.

matfud

matfuda at 2007-7-28 18:51:18 > top of Java-index,Java Essentials,Java Programming...
# 2

As mentioned, you have explicitly set debug. When you are creating your session you will be passing a Properties Object. You will have something like this

props.put("mail.debug","true");

false is the default from what I recall so remove the above line from wherever it appears in your code.

_helloWorld_a at 2007-7-28 18:51:18 > top of Java-index,Java Essentials,Java Programming...