Author |
|
savic.prvoslav Newbie
Joined: 15 December 2008 Location: Yugoslavia
Online Status: Offline Posts: 31
|
Posted: 16 February 2009 at 6:22am | IP Logged
|
|
|
Thank you very much, I will investigate and return you with results.
|
Back to Top |
|
|
savic.prvoslav Newbie
Joined: 15 December 2008 Location: Yugoslavia
Online Status: Offline Posts: 31
|
Posted: 16 February 2009 at 7:32am | IP Logged
|
|
|
OpenSSL is installed. Port 995 is not opened.
Afret port is opened we will see what and how.
|
Back to Top |
|
|
savic.prvoslav Newbie
Joined: 15 December 2008 Location: Yugoslavia
Online Status: Offline Posts: 31
|
Posted: 17 February 2009 at 5:07am | IP Logged
|
|
|
This morning Admin has enabled port 995, gmail is still not working.
|
Back to Top |
|
|
savic.prvoslav Newbie
Joined: 15 December 2008 Location: Yugoslavia
Online Status: Offline Posts: 31
|
Posted: 17 February 2009 at 5:21am | IP Logged
|
|
|
Is there someone who can provide with solution?
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 17 February 2009 at 6:02am | IP Logged
|
|
|
Please create a new PHP script in the web folder of your current WebMail Pro PHP installation and copy/paste the following code there:
Code:
<?php
$errno = 0;
$errstr = '';
$socket = fsockopen('ssl://pop.gmail.com', 995, $errno, $errstr, 5);
if(!$socket)
{
echo 'ERROR: #'.$errno.' - '.$errstr;
}
else
{
echo 'OK';
}
?> |
|
|
Please let us know what result you got.
Best regards,
Andrew
|
Back to Top |
|
|
savic.prvoslav Newbie
Joined: 15 December 2008 Location: Yugoslavia
Online Status: Offline Posts: 31
|
Posted: 17 February 2009 at 7:19am | IP Logged
|
|
|
http://www.filestacker.com/test.php
You can see by your self by clicking here
|
Back to Top |
|
|
tinwistle Newbie
Joined: 18 February 2009
Online Status: Offline Posts: 8
|
Posted: 17 July 2009 at 12:20pm | IP Logged
|
|
|
I could not connect until I un-commented in the php.ini file
;extension=php_openssl.dll
change to
extension=php_openssl.dll
|
Back to Top |
|
|