Author |
|
iconbill Valued Community Member
Joined: 07 March 2007 Location: Netherlands
Online Status: Offline Posts: 76
|
Posted: 24 August 2007 at 12:30am | IP Logged
|
|
|
Hello,
I have some weird problem with AuthMethod SPA.
Scenario:
When I use a smtp server with SPA-Auth method in Outlook 2003 it is possible for send emails. But when I use 'Mailer.AuthMethod = 4' with the component, I get an error that the authentication is not supported. When I use 'Mailer.AuthMethod = 2' it's again possible for send mails.
Now I am doubting about Outlook, is he really using SPA when sending mails or is he doing something else?
Wich AuthMethod number from Mailbee is the one Outlook 2003 is using when authentication SPA is selected?
Friendly regards,
Marco Smeets
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 24 August 2007 at 3:50am | IP Logged
|
|
|
Quote:
I get an error that the authentication is not supported. |
|
|
Is it "authentication is not supported" or "invalid credentials" error?
Could you enable logging SMTP session into a file, reproduce the error and provide us with the log file for examination? You can enable logging as follows (VB6 syntax):
Code:
Dim Mailer
Set Mailer = CreateObject("MailBee.SMTP")
Mailer.EnableLogging = True
Mailer.LogFilePath = "C:\my_log.txt"
Mailer.ClearLog |
|
|
Please make sure the application has permission to write into the specified location.
Best regards,
Andrew
|
Back to Top |
|
|