Search The ForumSearch   RegisterRegister  LoginLogin

General Issues

 AfterLogic Forum : General Issues
Subject Topic: problems with configuration 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: 11 July 2005 at 10:18am | IP Logged Quote Guests

I configured the webmail settings with information of the gmail
- Incoming Mail:
pop.gmail.com
Port: 995

- Outgoing Mail:
smtp.gmal.com
Port: 465

Wen I enter with my personal account ofthe gmail
Returns

"Connection failed. Check POP3 Server settings"

why?
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: 11 July 2005 at 10:54am | IP Logged Quote Alex

GMail is a kind of service which does not support regular POP3 and SMTP protocols. It supports S/POP3 and S/SMTP protocols instead (these are SSL-enabled mail protocols).

It's possible to modify WebMail code to support S/POP3 and S/SMTP by enabling MailBee SSL plugin (this requires just a few lines of code in the locations where MailBee.POP3 or MailBee.SMTP object connects to the server.

The required code change looks like this:
Code:

Set Mailer = Server.CreateObject("MailBee.POP3")
Mailer.LicenseKey = globalTxtLicenseKey
...
...

' NEW CODE STARTS
If strIncSrvPort=995 Then
  Set SSL = Server.CreateObject("MailBee.SSL")
  SSL.LicenseKey = "SSL key"
  Set Mailer.SSL = SSL
End If
' NEW CODE ENDS

Mailer.Connect strIncSrv, strIncSrvPort, login, password


Code:

Set objSMTP = Server.CreateObject("MailBee.SMTP")
...
...
objSMTP.PortNumber = globalIntOutgoingMailPort
objSMTP.LicenseKey = globalTxtLicenseKey

' NEW CODE STARTS
If globalIntOutgoingMailPort=465 Then
  Set SSL = Server.CreateObject("MailBee.SSL")
  SSL.LicenseKey = "SSL key"
  Set Mailer.SSL = SSL
End If
' NEW CODE ENDS


However, MailBee SSL component license is not included with MailBee Objects license, so if you need this functionality, you should also purchase MailBee SSL license key.

If you're interested in SSL extension to WebMail, please contact us at support@afterlogic.com for more information.

Regards,
Alex

Regards,
Alex
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