Author |
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 11 July 2005 at 10:18am | IP Logged
|
|
|
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 |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 11 July 2005 at 10:54am | IP Logged
|
|
|
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 |
|
|