Search The ForumSearch   RegisterRegister  LoginLogin

MailBee S/MIME

 AfterLogic Forum : MailBee S/MIME
Subject Topic: ssl on non-ssl port Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
Guests
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 19 May 2004 at 12:40pm | IP Logged Quote Guests

Hi guys,

I know my server does support ssl but there is no any "dedicated" port for ssl communication. Just wondering is it possible with mailbee to use ssl on ports 25 and 110 (pop and smtp)?

Thanks in advance!
Back to Top View Guests's Profile Search for other posts by Guests
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 19 May 2004 at 1:06pm | IP Logged Quote Alex

Yes, MailBee SSL fully supports "SSL connection over regular port" (also known as STARTTLS extension) for SMTP, POP3 and IMAP4 components.

Just specify SSL.StartTLS=True to use this mode:

I.e. smth like (for SMTP object):

Set SMTP = CreateObject("MailBee.SMTP")
SMTP.LicenseKey = "smtp key"
Set SSL = CreateObject("MailBee.SSL")
SSL.LicenseKey = "ssl key"
SSL.StartTLS = True ' Enable SSL over port 25
Set SMTP.SSL = SSL
SMTP.ServerName = "mail.server.com"
If SMTP.Connect Then
MsgBox "Connected to server using secure connection"
End If
Back to Top View Alex's Profile Search for other posts by Alex
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide