Posted By:
Anonymous
Posted On:
Friday, September 21, 2001 05:00 AM
When I try to send a mail using a smtp server i don't get any exceptions but the message does not reach the reciever. Below is the SMTP debug text that is written. I can't see whats wrong. 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 "62.119.41.165", port 25 DEBUG SMTP RCVD: 220 bfexchange01.bluefactory.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2653.13) ready DEBUG: SMTPTransport connected to host "62.119.41.165", port: 25 DEBUG SMTP SENT: EHLO KMKWSPSTH DEBUG SMTP RC
More>>
When I try to send a mail using a smtp server i don't get any exceptions but the message does not reach the reciever. Below is the SMTP debug text that is written. I can't see whats wrong.
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 "62.119.41.165", port 25
DEBUG SMTP RCVD: 220 bfexchange01.bluefactory.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2653.13) ready
DEBUG: SMTPTransport connected to host "62.119.41.165", port: 25
DEBUG SMTP SENT: EHLO KMKWSPSTH
DEBUG SMTP RCVD: 250-bfexchange01.bluefactory.com Hello [KMKWSPSTH]
250-XEXCH50
250-HELP
250-ETRN
250-DSN
250-SIZE 0
250-AUTH LOGIN
250 AUTH=LOGIN
DEBUG SMTP Found extension "XEXCH50", arg ""
DEBUG SMTP Found extension "HELP", arg ""
DEBUG SMTP Found extension "ETRN", arg ""
DEBUG SMTP Found extension "DSN", arg ""
DEBUG SMTP Found extension "SIZE", arg "0"
DEBUG SMTP Found extension "AUTH", arg "LOGIN"
DEBUG SMTP Found extension "AUTH=LOGIN", arg ""
DEBUG SMTP: use8bit false
DEBUG SMTP SENT: MAIL
FROM:
DEBUG SMTP RCVD: 250 OK - mail from
DEBUG SMTP SENT: RCPT TO:
DEBUG SMTP RCVD: 250 OK - Recipient
Verified Addresses
kerstin.mork@ausystem.se
DEBUG SMTP SENT: DATA
DEBUG SMTP RCVD: 354 Send data. End with CRLF.CRLF
DEBUG SMTP SENT:
.
DEBUG SMTP RCVD: 250 OK
DEBUG SMTP SENT: QUIT
<<Less