Author |
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 11 March 2005 at 8:31am | IP Logged
|
|
|
Hi,
Last year we purchased license for Mailbee POP3 for one of our applications. What can I say about the component except that it is 'The Best'.
Now we wish to buy Licences for Mailbee IMAP4 and SSL too. We have downloaded the trial version of Mailbee Objects to evaluate the product. It seems to be a great product too, but, we are unable to evaluate full features of IMAP4 and SSL because the help file that comes with downloaded trial version of Mailbee Objects does not give details of available Properties, Methods and Events for Mailbee IMAP4. Not to mention, it does not say anything about Mailbee SSL at all! The help file
only gives some samples which is not sufficient to understand/evaluate all the features.
Is it possible to get detailed help file for Mailbee IMAP4 and Mailbee SSL?? (Just like we got a compiled help file when we evaluated Mailbee POP3).
We can download the help files if you provide us with the download links to the help files.
An early response would be appreciated. Thanks a lot for your help...
Best Regards
Shantanu Biswas
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 11 March 2005 at 8:38am | IP Logged
|
|
|
It seems you've opened wrong file or have old help file opened (and therefore locked) when installing new version.
Please un-install old version (and make sure it was really un-installed, so no files were locked during un-install). Now install new version and you should be able to access updated MailBee.chm file.
Anyway, you can get latest help file from the following location:
http://www.afterlogic.com/mailbee.chm
Currently, we're in the process of migration to new web site (http://www.afterlogic.com) and new brand (Afterlogic). All new versions of our products are available on the new web site only. mailbee.iforum.com will be made simple redirect to www.afterlogic.com soon.
Regards,
Alex
|
Back to Top |
|
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 03 June 2005 at 5:28am | IP Logged
|
|
|
I have just downloaded your trial version, and I must do the login with ASP making an imap connection with my server.Could you please tell me how can I do it.
Thanks
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 03 June 2005 at 8:13am | IP Logged
|
|
|
The following example connects to the specified IMAP account in ASP (also, logging IMAP session into a file is turned on to simplify debugging if connection cannot be established):
Code:
Dim Mailer
Set Mailer = Server.CreateObject("MailBee.IMAP4")
Mailer.EnableLogging = True ' Logging helps to discover any problems
Mailer.LogFilePath = "C:\imap4_log.txt"
Mailer.LicenseKey = "put your license key here"
If Mailer.Connect("mailserver.com", 143, "MyName", "MyPassword") Then
Response.Write "Connected successfully"
Mailer.Disconnect
Else
Response.Write Mailer.ErrDesc
End If
|
|
|
Regards,
Alex
|
Back to Top |
|
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 03 June 2005 at 8:59am | IP Logged
|
|
|
Thank you very much for your answer.It seems it is working very well.
Regards Erjona
|
Back to Top |
|
|