| Bill Nguyen 2004-03-30, 12:36 pm |
| Win 2K
SMTP Virtual server installed along with IIS5.0
Got lots of badmail suddendly. "Client not authenticated." I looked into
the SMTP config and found that Outbound message was set to anonymous login.
Any suggestion is greatly appreciated.
Bill
Bad mail below:
-----------
This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
-- 9B095B5ADSN=_01C415C774C09D0400000079ras
server.www.ja
Content-Type: message/delivery-status
Reporting-MTA: dns;thisserver.www.jaco.com
Received-From-MTA: dns;thisserver.www.jaco.com
Arrival-Date: Mon, 29 Mar 2004 18:14:20 -0800
Final-Recipient: rfc822;wfiuser@jaco.com
Action: failed
Status: 5.7.3
Diagnostic-Code: smtp;505 5.7.3 Client was not authenticated
Sendmail routine:
Private Sub sendMail(fromAddr, recipients, subject, body)
'This was SENDMAILUSINGCDONT routine
On Error Resume Next
Dim mailObj
Set mailObj = CreateObject("CDONTS.NewMail")
mailObj.BodyFormat = 0
mailObj.MailFormat = 0
mailObj.From = fromAddr
mailObj.To = recipients
mailObj.subject = subject
mailObj.body = body
mailObj.Send
Set mailObj = Nothing
End Sub
|