Author |
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 19 May 2004 at 12:40pm | IP Logged
|
|
|
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 |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 19 May 2004 at 1:06pm | IP Logged
|
|
|
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 |
|
|