Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #16740 > unrolled thread

Re: Can't connect to gmail-imap.l.google.com,993: Connection refused

Started byajayukhale25@gmail.com
First post2016-04-19 02:33 -0700
Last post2016-04-21 07:13 -0400
Articles 4 — 3 participants

Back to article view | Back to comp.lang.php

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Can't connect to gmail-imap.l.google.com,993: Connection refused ajayukhale25@gmail.com - 2016-04-19 02:33 -0700
    Re: Can't connect to gmail-imap.l.google.com,993: Connection refused bill <william@TechServSys.com> - 2016-04-19 07:31 -0400
      Re: Can't connect to gmail-imap.l.google.com,993: Connection refused Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-04-21 01:39 +0200
        Re: Can't connect to gmail-imap.l.google.com,993: Connection refused bill <william@TechServSys.com> - 2016-04-21 07:13 -0400

#16740 — Re: Can't connect to gmail-imap.l.google.com,993: Connection refused

Fromajayukhale25@gmail.com
Date2016-04-19 02:33 -0700
SubjectRe: Can't connect to gmail-imap.l.google.com,993: Connection refused
Message-ID<6a807446-29fe-481d-9233-869db9cb9976@googlegroups.com>
On Saturday, June 27, 2009 at 3:47:54 PM UTC+5:30, computerzworld wrote:
> Hello,
> I am getting error like "Can't connect to gmail-imap.l.google.com,993:
> Connection refused" while trying to open imap connection on the server
> using imap_open. I have checked about IMAP connection on server using
> phpinfo() and it displays that its on , on the server.
> 
> ------------------------------------------------------------------------------------------------------------------------------
> imap
> 
> IMAP c-Client Version 2004 SSL Support enabled Kerberos Support
> enabled
> 
> -------------------------------------------------------------------------------------------------------------------------------
> 
> And here is my imap connection string to open imap connection.
> 
> $serverName = "{imap.gmail.com:993/imap/ssl}INBOX";
> 
> The same thing is working on my localhost. But don't know why its not
> working on the server. Is there any another setting that I have to
> make in order to make it work? Please help me. Thanks in advance.

[toc] | [next] | [standalone]


#16741

Frombill <william@TechServSys.com>
Date2016-04-19 07:31 -0400
Message-ID<nf54v7$7m9$2@gioia.aioe.org>
In reply to#16740
On 4/19/2016 5:33 AM, ajayukhale25@gmail.com wrote:
> On Saturday, June 27, 2009 at 3:47:54 PM UTC+5:30, computerzworld wrote:
>> Hello,
>> I am getting error like "Can't connect to gmail-imap.l.google.com,993:
>> Connection refused" while trying to open imap connection on the server
>> using imap_open. I have checked about IMAP connection on server using
>> phpinfo() and it displays that its on , on the server.
>>
...
>> $serverName = "{imap.gmail.com:993/imap/ssl}INBOX";
...
>>
>> The same thing is working on my localhost. But don't know why its not
>> working on the server. Is there any another setting that I have to
>> make in order to make it work? Please help me. Thanks in advance.
>
Thunderbird is using port 995 not 993 using SSL/TLS
bill

[toc] | [prev] | [next] | [standalone]


#16742

FromThomas 'PointedEars' Lahn <PointedEars@web.de>
Date2016-04-21 01:39 +0200
Message-ID<2122336.SQNdrIZn4i@PointedEars.de>
In reply to#16741
bill wrote:

> On 4/19/2016 5:33 AM, ajayukhale25@gmail.com wrote:
>> On Saturday, June 27, 2009 at 3:47:54 PM UTC+5:30, computerzworld wrote:
>>> I am getting error like "Can't connect to gmail-imap.l.google.com,993:
>>> Connection refused" while trying to open imap connection on the server
>>> using imap_open. I have checked about IMAP connection on server using
>>> phpinfo() and it displays that its on , on the server.
>>>
> ...
>>> $serverName = "{imap.gmail.com:993/imap/ssl}INBOX";
                    ^^^^
> ...
>>>
>>> The same thing is working on my localhost. But don't know why its not
>>> working on the server. Is there any another setting that I have to
>>> make in order to make it work? Please help me. Thanks in advance.
>>
> Thunderbird is using port 995 not 993 using SSL/TLS

Incorrect.

$ grep 99[35] /etc/services
imaps           993/tcp                         # IMAP over SSL
imaps           993/udp
pop3s           995/tcp                         # POP-3 over SSL
pop3s           995/udp

-- 
PointedEars
Zend Certified PHP Engineer 
<http://www.zend.com/en/yellow-pages/ZEND024953> | Twitter: @PointedEars2
Please do not cc me. / Bitte keine Kopien per E-Mail.

[toc] | [prev] | [next] | [standalone]


#16743

Frombill <william@TechServSys.com>
Date2016-04-21 07:13 -0400
Message-ID<nfacl1$cj3$2@gioia.aioe.org>
In reply to#16742
On 4/20/2016 7:39 PM, Thomas 'PointedEars' Lahn wrote:
>
> Incorrect.
>
> $ grep 99[35] /etc/services
> imaps           993/tcp                         # IMAP over SSL
> imaps           993/udp
> pop3s           995/tcp                         # POP-3 over SSL
> pop3s           995/udp
>

correct

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.php


csiph-web