Author |
|
JMail Newbie
Joined: 25 April 2007 Location: United States
Online Status: Offline Posts: 1
|
Posted: 25 April 2007 at 10:16am | IP Logged
|
|
|
I am sending emails through VB internally and externally successfully, but on a few specific external email addresses I get
[Error: Negative or void server response]
I can go to outlook and send the same address without any problems.
I am connecting to a webshield which runs linux.
|
Back to Top |
|
|
oleg AfterLogic Support
Joined: 11 April 2007 Location: United States
Online Status: Offline Posts: 21
|
Posted: 25 April 2007 at 10:49am | IP Logged
|
|
|
To let us assist you, please enable logging SMTP session into a file, reproduce the problem, and then send us the log file (you can use our Request Support Form for this). You can enable logging as below:
Code:
' Enable logging SMTP session into a file
objSMTP.EnableLogging = True
objSMTP.LogFilePath = "C:\smtp_log.txt"
objSMTP.ClearLog
|
|
|
The following topic may be of help for you: SMTP Troubleshooting.
Please let us know if this helps.
Best regards,
Oleg
|
Back to Top |
|
|