Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.php > #18215 > unrolled thread
| Started by | kristjanman2k20@gmail.com |
|---|---|
| First post | 2020-03-04 05:43 -0800 |
| Last post | 2020-03-06 09:46 +0100 |
| Articles | 13 — 5 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.
Re: Connecting to Gmail through IMAP with PHP - SSL context failed kristjanman2k20@gmail.com - 2020-03-04 05:43 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Jerry Stuckle <jstucklex@attglobal.net> - 2020-03-04 11:09 -0500
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Kristjan Robam <kristjanman2k20@gmail.com> - 2020-03-04 12:50 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Jerry Stuckle <jstucklex@attglobal.net> - 2020-03-04 16:57 -0500
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Kristjan Robam <kristjanman2k20@gmail.com> - 2020-03-04 13:59 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Jerry Stuckle <jstucklex@attglobal.net> - 2020-03-04 21:05 -0500
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Kristjan Robam <kristjanman2k20@gmail.com> - 2020-03-04 22:35 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Arno Welzel <usenet@arnowelzel.de> - 2020-03-05 17:58 +0100
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Kristjan Robam <kristjanman2k20@gmail.com> - 2020-03-05 22:20 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Arno Welzel <usenet@arnowelzel.de> - 2020-03-05 17:55 +0100
Re: Connecting to Gmail through IMAP with PHP - SSL context failed tony@mountifield.org (Tony Mountifield) - 2020-03-05 10:47 +0000
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Kristjan Robam <kristjanman2k20@gmail.com> - 2020-03-05 22:18 -0800
Re: Connecting to Gmail through IMAP with PHP - SSL context failed Arno Welzel <usenet@arnowelzel.de> - 2020-03-06 09:46 +0100
| From | kristjanman2k20@gmail.com |
|---|---|
| Date | 2020-03-04 05:43 -0800 |
| Subject | Re: Connecting to Gmail through IMAP with PHP - SSL context failed |
| Message-ID | <00b3f9b8-77c7-4537-8a0a-5f4878dcb817@googlegroups.com> |
reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
> I'm trying to connect to Gmail through IMAP with PHP running in
> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
> configuration issue that is keeping this from working. First, here's
> what I did to setup IMAP for PHP:
>
> sudo apt-get install libc-client2007b libc-client2007b-dev
> sudo apt-get install php5-imap
> sudo /etc/init.d/apache2 restart
>
> When I run phpinfo(), I get the following imap values:
>
> IMAP c-Client Version: 2004
> SSL Support: enabled
> Kerberos Support: enabled
>
> Here's my sample code:
>
> <?php
> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
> $user = 'my gmail address';
> $password = 'my gmail password';
>
> $connection = imap_open($connect_to, $user, $password)
> or die("Can't connect to '$connect_to': " . imap_last_error());
>
> imap_close($connection);
> ?>
>
> When I execute this code, I get the following output:
>
> Warning: imap_open() [function.imap-open]: Couldn't open stream
> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
> gmail/gmail.php on line 10
> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
> TLS/SSL failure for imap.gmail.com: SSL context failed
>
> Note that I can telnet to imap.gmail.com:993 from this computer. I can
> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
> mail without problems. So, I don't think this is a firewall issue. I'm
> pretty sure I've got something in PHP not setup correctly.
>
> Any ideas?
I don't see why people want to make things so difficult.
Could just put a link to webpage that will open their mail portal.
Kristjan Robam
[toc] | [next] | [standalone]
| From | Jerry Stuckle <jstucklex@attglobal.net> |
|---|---|
| Date | 2020-03-04 11:09 -0500 |
| Message-ID | <r3ojrt$8si$1@jstuckle.eternal-september.org> |
| In reply to | #18215 |
On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
>> I'm trying to connect to Gmail through IMAP with PHP running in
>> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
>> configuration issue that is keeping this from working. First, here's
>> what I did to setup IMAP for PHP:
>>
>> sudo apt-get install libc-client2007b libc-client2007b-dev
>> sudo apt-get install php5-imap
>> sudo /etc/init.d/apache2 restart
>>
>> When I run phpinfo(), I get the following imap values:
>>
>> IMAP c-Client Version: 2004
>> SSL Support: enabled
>> Kerberos Support: enabled
>>
>> Here's my sample code:
>>
>> <?php
>> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
>> $user = 'my gmail address';
>> $password = 'my gmail password';
>>
>> $connection = imap_open($connect_to, $user, $password)
>> or die("Can't connect to '$connect_to': " . imap_last_error());
>>
>> imap_close($connection);
>> ?>
>>
>> When I execute this code, I get the following output:
>>
>> Warning: imap_open() [function.imap-open]: Couldn't open stream
>> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
>> gmail/gmail.php on line 10
>> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
>> TLS/SSL failure for imap.gmail.com: SSL context failed
>>
>> Note that I can telnet to imap.gmail.com:993 from this computer. I can
>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
>> mail without problems. So, I don't think this is a firewall issue. I'm
>> pretty sure I've got something in PHP not setup correctly.
>>
>> Any ideas?
>
> I don't see why people want to make things so difficult.
> Could just put a link to webpage that will open their mail portal.
>
>
> Kristjan Robam
>
Because that exposes their email address. Spammers look for these types
of links and when found add them to a list they sell to other spammers.
Just a great way to get inundated with SPAM.
--
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex@attglobal.net
==================
[toc] | [prev] | [next] | [standalone]
| From | Kristjan Robam <kristjanman2k20@gmail.com> |
|---|---|
| Date | 2020-03-04 12:50 -0800 |
| Message-ID | <6b23bf77-f407-42a2-938c-0163f15a02df@googlegroups.com> |
| In reply to | #18216 |
kolmapäev, 4. märts 2020 18:09.40 UTC+2 kirjutas Jerry Stuckle:
> On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
> > reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
> >> I'm trying to connect to Gmail through IMAP with PHP running in
> >> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
> >> configuration issue that is keeping this from working. First, here's
> >> what I did to setup IMAP for PHP:
> >>
> >> sudo apt-get install libc-client2007b libc-client2007b-dev
> >> sudo apt-get install php5-imap
> >> sudo /etc/init.d/apache2 restart
> >>
> >> When I run phpinfo(), I get the following imap values:
> >>
> >> IMAP c-Client Version: 2004
> >> SSL Support: enabled
> >> Kerberos Support: enabled
> >>
> >> Here's my sample code:
> >>
> >> <?php
> >> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
> >> $user = 'my gmail address';
> >> $password = 'my gmail password';
> >>
> >> $connection = imap_open($connect_to, $user, $password)
> >> or die("Can't connect to '$connect_to': " . imap_last_error());
> >>
> >> imap_close($connection);
> >> ?>
> >>
> >> When I execute this code, I get the following output:
> >>
> >> Warning: imap_open() [function.imap-open]: Couldn't open stream
> >> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
> >> gmail/gmail.php on line 10
> >> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
> >> TLS/SSL failure for imap.gmail.com: SSL context failed
> >>
> >> Note that I can telnet to imap.gmail.com:993 from this computer. I can
> >> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
> >> mail without problems. So, I don't think this is a firewall issue. I'm
> >> pretty sure I've got something in PHP not setup correctly.
> >>
> >> Any ideas?
> >
> > I don't see why people want to make things so difficult.
> > Could just put a link to webpage that will open their mail portal.
> >
> >
> > Kristjan Robam
> >
>
> Because that exposes their email address. Spammers look for these types
> of links and when found add them to a list they sell to other spammers.
>
> Just a great way to get inundated with SPAM.
Gmail is pretty known portal.
Forgive me if I didn't get your point.
If you find gmail link, there is nothing special about this.
Kristjan Robam
>
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> jstucklex@attglobal.net
> ==================
[toc] | [prev] | [next] | [standalone]
| From | Jerry Stuckle <jstucklex@attglobal.net> |
|---|---|
| Date | 2020-03-04 16:57 -0500 |
| Message-ID | <r3p87u$aeh$1@jstuckle.eternal-september.org> |
| In reply to | #18219 |
On 3/4/2020 3:50 PM, Kristjan Robam wrote:
> kolmapäev, 4. märts 2020 18:09.40 UTC+2 kirjutas Jerry Stuckle:
>> On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
>>> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
>>>> I'm trying to connect to Gmail through IMAP with PHP running in
>>>> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
>>>> configuration issue that is keeping this from working. First, here's
>>>> what I did to setup IMAP for PHP:
>>>>
>>>> sudo apt-get install libc-client2007b libc-client2007b-dev
>>>> sudo apt-get install php5-imap
>>>> sudo /etc/init.d/apache2 restart
>>>>
>>>> When I run phpinfo(), I get the following imap values:
>>>>
>>>> IMAP c-Client Version: 2004
>>>> SSL Support: enabled
>>>> Kerberos Support: enabled
>>>>
>>>> Here's my sample code:
>>>>
>>>> <?php
>>>> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
>>>> $user = 'my gmail address';
>>>> $password = 'my gmail password';
>>>>
>>>> $connection = imap_open($connect_to, $user, $password)
>>>> or die("Can't connect to '$connect_to': " . imap_last_error());
>>>>
>>>> imap_close($connection);
>>>> ?>
>>>>
>>>> When I execute this code, I get the following output:
>>>>
>>>> Warning: imap_open() [function.imap-open]: Couldn't open stream
>>>> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
>>>> gmail/gmail.php on line 10
>>>> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
>>>> TLS/SSL failure for imap.gmail.com: SSL context failed
>>>>
>>>> Note that I can telnet to imap.gmail.com:993 from this computer. I can
>>>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
>>>> mail without problems. So, I don't think this is a firewall issue. I'm
>>>> pretty sure I've got something in PHP not setup correctly.
>>>>
>>>> Any ideas?
>>>
>>> I don't see why people want to make things so difficult.
>>> Could just put a link to webpage that will open their mail portal.
>>>
>>>
>>> Kristjan Robam
>>>
>>
>> Because that exposes their email address. Spammers look for these types
>> of links and when found add them to a list they sell to other spammers.
>>
>> Just a great way to get inundated with SPAM.
>
> Gmail is pretty known portal.
> Forgive me if I didn't get your point.
> If you find gmail link, there is nothing special about this.
>
> Kristjan Robam
>
It gives spammers a valid email address to spam - worth much more than
just a portal. And serious users don't use gmail addresses - they have
email addresses on their own domains.
--
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex@attglobal.net
==================
[toc] | [prev] | [next] | [standalone]
| From | Kristjan Robam <kristjanman2k20@gmail.com> |
|---|---|
| Date | 2020-03-04 13:59 -0800 |
| Message-ID | <cff1c607-6849-4a8e-8703-b59670e8cd5b@googlegroups.com> |
| In reply to | #18220 |
kolmapäev, 4. märts 2020 23:57.24 UTC+2 kirjutas Jerry Stuckle:
> On 3/4/2020 3:50 PM, Kristjan Robam wrote:
> > kolmapäev, 4. märts 2020 18:09.40 UTC+2 kirjutas Jerry Stuckle:
> >> On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
> >>> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
> >>>> I'm trying to connect to Gmail through IMAP with PHP running in
> >>>> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
> >>>> configuration issue that is keeping this from working. First, here's
> >>>> what I did to setup IMAP for PHP:
> >>>>
> >>>> sudo apt-get install libc-client2007b libc-client2007b-dev
> >>>> sudo apt-get install php5-imap
> >>>> sudo /etc/init.d/apache2 restart
> >>>>
> >>>> When I run phpinfo(), I get the following imap values:
> >>>>
> >>>> IMAP c-Client Version: 2004
> >>>> SSL Support: enabled
> >>>> Kerberos Support: enabled
> >>>>
> >>>> Here's my sample code:
> >>>>
> >>>> <?php
> >>>> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
> >>>> $user = 'my gmail address';
> >>>> $password = 'my gmail password';
> >>>>
> >>>> $connection = imap_open($connect_to, $user, $password)
> >>>> or die("Can't connect to '$connect_to': " . imap_last_error());
> >>>>
> >>>> imap_close($connection);
> >>>> ?>
> >>>>
> >>>> When I execute this code, I get the following output:
> >>>>
> >>>> Warning: imap_open() [function.imap-open]: Couldn't open stream
> >>>> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
> >>>> gmail/gmail.php on line 10
> >>>> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
> >>>> TLS/SSL failure for imap.gmail.com: SSL context failed
> >>>>
> >>>> Note that I can telnet to imap.gmail.com:993 from this computer. I can
> >>>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
> >>>> mail without problems. So, I don't think this is a firewall issue. I'm
> >>>> pretty sure I've got something in PHP not setup correctly.
> >>>>
> >>>> Any ideas?
> >>>
> >>> I don't see why people want to make things so difficult.
> >>> Could just put a link to webpage that will open their mail portal.
> >>>
> >>>
> >>> Kristjan Robam
> >>>
> >>
> >> Because that exposes their email address. Spammers look for these types
> >> of links and when found add them to a list they sell to other spammers.
> >>
> >> Just a great way to get inundated with SPAM.
> >
> > Gmail is pretty known portal.
> > Forgive me if I didn't get your point.
> > If you find gmail link, there is nothing special about this.
> >
> > Kristjan Robam
> >
>
> It gives spammers a valid email address to spam - worth much more than
> just a portal. And serious users don't use gmail addresses - they have
> email addresses on their own domains.
>
No, I didn't mean that. I mean't that you write only gmail . google . com link to your webpage. For faster access....
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> jstucklex@attglobal.net
> ==================
Kristjan Robam
[toc] | [prev] | [next] | [standalone]
| From | Jerry Stuckle <jstucklex@attglobal.net> |
|---|---|
| Date | 2020-03-04 21:05 -0500 |
| Message-ID | <r3pmpk$o2d$1@jstuckle.eternal-september.org> |
| In reply to | #18221 |
On 3/4/2020 4:59 PM, Kristjan Robam wrote:
> kolmapäev, 4. märts 2020 23:57.24 UTC+2 kirjutas Jerry Stuckle:
>> On 3/4/2020 3:50 PM, Kristjan Robam wrote:
>>> kolmapäev, 4. märts 2020 18:09.40 UTC+2 kirjutas Jerry Stuckle:
>>>> On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
>>>>> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
>>>>>> I'm trying to connect to Gmail through IMAP with PHP running in
>>>>>> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
>>>>>> configuration issue that is keeping this from working. First, here's
>>>>>> what I did to setup IMAP for PHP:
>>>>>>
>>>>>> sudo apt-get install libc-client2007b libc-client2007b-dev
>>>>>> sudo apt-get install php5-imap
>>>>>> sudo /etc/init.d/apache2 restart
>>>>>>
>>>>>> When I run phpinfo(), I get the following imap values:
>>>>>>
>>>>>> IMAP c-Client Version: 2004
>>>>>> SSL Support: enabled
>>>>>> Kerberos Support: enabled
>>>>>>
>>>>>> Here's my sample code:
>>>>>>
>>>>>> <?php
>>>>>> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
>>>>>> $user = 'my gmail address';
>>>>>> $password = 'my gmail password';
>>>>>>
>>>>>> $connection = imap_open($connect_to, $user, $password)
>>>>>> or die("Can't connect to '$connect_to': " . imap_last_error());
>>>>>>
>>>>>> imap_close($connection);
>>>>>> ?>
>>>>>>
>>>>>> When I execute this code, I get the following output:
>>>>>>
>>>>>> Warning: imap_open() [function.imap-open]: Couldn't open stream
>>>>>> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
>>>>>> gmail/gmail.php on line 10
>>>>>> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
>>>>>> TLS/SSL failure for imap.gmail.com: SSL context failed
>>>>>>
>>>>>> Note that I can telnet to imap.gmail.com:993 from this computer. I can
>>>>>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
>>>>>> mail without problems. So, I don't think this is a firewall issue. I'm
>>>>>> pretty sure I've got something in PHP not setup correctly.
>>>>>>
>>>>>> Any ideas?
>>>>>
>>>>> I don't see why people want to make things so difficult.
>>>>> Could just put a link to webpage that will open their mail portal.
>>>>>
>>>>>
>>>>> Kristjan Robam
>>>>>
>>>>
>>>> Because that exposes their email address. Spammers look for these types
>>>> of links and when found add them to a list they sell to other spammers.
>>>>
>>>> Just a great way to get inundated with SPAM.
>>>
>>> Gmail is pretty known portal.
>>> Forgive me if I didn't get your point.
>>> If you find gmail link, there is nothing special about this.
>>>
>>> Kristjan Robam
>>>
>>
>> It gives spammers a valid email address to spam - worth much more than
>> just a portal. And serious users don't use gmail addresses - they have
>> email addresses on their own domains.
>>
> No, I didn't mean that. I mean't that you write only gmail . google . com link to your webpage. For faster access....
>
>
> Kristjan Robam
>
That is not a valid email address and does not allow the user to send
you email.
--
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex@attglobal.net
==================
[toc] | [prev] | [next] | [standalone]
| From | Kristjan Robam <kristjanman2k20@gmail.com> |
|---|---|
| Date | 2020-03-04 22:35 -0800 |
| Message-ID | <6f4498d9-e3bf-40f7-9555-d816a102f3af@googlegroups.com> |
| In reply to | #18222 |
neljapäev, 5. märts 2020 4:05.51 UTC+2 kirjutas Jerry Stuckle:
> On 3/4/2020 4:59 PM, Kristjan Robam wrote:
> > kolmapäev, 4. märts 2020 23:57.24 UTC+2 kirjutas Jerry Stuckle:
> >> On 3/4/2020 3:50 PM, Kristjan Robam wrote:
> >>> kolmapäev, 4. märts 2020 18:09.40 UTC+2 kirjutas Jerry Stuckle:
> >>>> On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote:
> >>>>> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com:
> >>>>>> I'm trying to connect to Gmail through IMAP with PHP running in
> >>>>>> Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP
> >>>>>> configuration issue that is keeping this from working. First, here's
> >>>>>> what I did to setup IMAP for PHP:
> >>>>>>
> >>>>>> sudo apt-get install libc-client2007b libc-client2007b-dev
> >>>>>> sudo apt-get install php5-imap
> >>>>>> sudo /etc/init.d/apache2 restart
> >>>>>>
> >>>>>> When I run phpinfo(), I get the following imap values:
> >>>>>>
> >>>>>> IMAP c-Client Version: 2004
> >>>>>> SSL Support: enabled
> >>>>>> Kerberos Support: enabled
> >>>>>>
> >>>>>> Here's my sample code:
> >>>>>>
> >>>>>> <?php
> >>>>>> $connect_to = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
> >>>>>> $user = 'my gmail address';
> >>>>>> $password = 'my gmail password';
> >>>>>>
> >>>>>> $connection = imap_open($connect_to, $user, $password)
> >>>>>> or die("Can't connect to '$connect_to': " . imap_last_error());
> >>>>>>
> >>>>>> imap_close($connection);
> >>>>>> ?>
> >>>>>>
> >>>>>> When I execute this code, I get the following output:
> >>>>>>
> >>>>>> Warning: imap_open() [function.imap-open]: Couldn't open stream
> >>>>>> {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX in /var/www/clint/
> >>>>>> gmail/gmail.php on line 10
> >>>>>> Can't connect to '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX':
> >>>>>> TLS/SSL failure for imap.gmail.com: SSL context failed
> >>>>>>
> >>>>>> Note that I can telnet to imap.gmail.com:993 from this computer. I can
> >>>>>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch
> >>>>>> mail without problems. So, I don't think this is a firewall issue. I'm
> >>>>>> pretty sure I've got something in PHP not setup correctly.
> >>>>>>
> >>>>>> Any ideas?
> >>>>>
> >>>>> I don't see why people want to make things so difficult.
> >>>>> Could just put a link to webpage that will open their mail portal.
> >>>>>
> >>>>>
> >>>>> Kristjan Robam
> >>>>>
> >>>>
> >>>> Because that exposes their email address. Spammers look for these types
> >>>> of links and when found add them to a list they sell to other spammers.
> >>>>
> >>>> Just a great way to get inundated with SPAM.
> >>>
> >>> Gmail is pretty known portal.
> >>> Forgive me if I didn't get your point.
> >>> If you find gmail link, there is nothing special about this.
> >>>
> >>> Kristjan Robam
> >>>
> >>
> >> It gives spammers a valid email address to spam - worth much more than
> >> just a portal. And serious users don't use gmail addresses - they have
> >> email addresses on their own domains.
> >>
> > No, I didn't mean that. I mean't that you write only gmail . google . com link to your webpage. For faster access....
> >
> >
> > Kristjan Robam
> >
>
> That is not a valid email address and does not allow the user to send
> you email.
>
Yes, it allows.
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> jstucklex@attglobal.net
> ==================
Kristjan Robam
[toc] | [prev] | [next] | [standalone]
| From | Arno Welzel <usenet@arnowelzel.de> |
|---|---|
| Date | 2020-03-05 17:58 +0100 |
| Message-ID | <hccpdqFfjfhU2@mid.individual.net> |
| In reply to | #18223 |
You all don't understand each other! 1) The OP asked how to get IMAP ACCESS WITH PHP TO GMAIL 2) Some other guy suggested to PUT A LINK TO THE GMAIL WEBSITE INSTEAD OF USING IMAP IN PHP ITSELF 3) And some other complained the PUTTING AN EMAIL ADDRESS ON THE WEBSITE might be bad since spammers will collect this address This all has NOTHING in common except that you somehow talk about "email". -- Arno Welzel https://arnowelzel.de
[toc] | [prev] | [next] | [standalone]
| From | Kristjan Robam <kristjanman2k20@gmail.com> |
|---|---|
| Date | 2020-03-05 22:20 -0800 |
| Message-ID | <e4d50c0d-07f4-4433-ab2d-06912d54bdbd@googlegroups.com> |
| In reply to | #18227 |
neljapäev, 5. märts 2020 18:58.40 UTC+2 kirjutas Arno Welzel: > You all don't understand each other! > > 1) The OP asked how to get IMAP ACCESS WITH PHP TO GMAIL > > 2) Some other guy suggested to PUT A LINK TO THE GMAIL WEBSITE INSTEAD > OF USING IMAP IN PHP ITSELF > > 3) And some other complained the PUTTING AN EMAIL ADDRESS ON THE WEBSITE > might be bad since spammers will collect this address > > This all has NOTHING in common except that you somehow talk about "email". > > We just give our opinions in this topic. Kristjan Robam > -- > Arno Welzel > https://arnowelzel.de
[toc] | [prev] | [next] | [standalone]
| From | Arno Welzel <usenet@arnowelzel.de> |
|---|---|
| Date | 2020-03-05 17:55 +0100 |
| Message-ID | <hccp77FfjfhU1@mid.individual.net> |
| In reply to | #18216 |
On 04.03.20 17:09, Jerry Stuckle wrote: > On 3/4/2020 8:43 AM, kristjanman2k20@gmail.com wrote: >> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com: [...] >>> Note that I can telnet to imap.gmail.com:993 from this computer. I can >>> also hookup Evolution (mail reader) to Gmail through IMAP and fetch >>> mail without problems. So, I don't think this is a firewall issue. I'm >>> pretty sure I've got something in PHP not setup correctly. >>> >>> Any ideas? >> >> I don't see why people want to make things so difficult. >> Could just put a link to webpage that will open their mail portal. >> >> >> Kristjan Robam >> > > Because that exposes their email address. Spammers look for these types > of links and when found add them to a list they sell to other spammers. > > Just a great way to get inundated with SPAM. I think there is a lot of misunderstanding her: What has "I can't get IMAP access to GMail working with PHP" to do with "put a link to the mail portal"? And what does "put a link to the mail portal" to do with "put an e-mail address to your website"? -- Arno Welzel https://arnowelzel.de
[toc] | [prev] | [next] | [standalone]
| From | tony@mountifield.org (Tony Mountifield) |
|---|---|
| Date | 2020-03-05 10:47 +0000 |
| Message-ID | <r3qlc8$9to$1@softins.softins.co.uk> |
| In reply to | #18215 |
In article <00b3f9b8-77c7-4537-8a0a-5f4878dcb817@googlegroups.com>, <kristjanman2k20@gmail.com> wrote: > reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com: > > ... > > I don't see why people want to make things so difficult. > Could just put a link to webpage that will open their mail portal. Any particular reason you are replying to a post that is over 10 years old? Cheers Tony -- Tony Mountifield Work: tony@softins.co.uk - http://www.softins.co.uk Play: tony@mountifield.org - http://tony.mountifield.org
[toc] | [prev] | [next] | [standalone]
| From | Kristjan Robam <kristjanman2k20@gmail.com> |
|---|---|
| Date | 2020-03-05 22:18 -0800 |
| Message-ID | <50a9bce7-b0e1-4d99-9a12-6e90aaddda15@googlegroups.com> |
| In reply to | #18224 |
neljapäev, 5. märts 2020 12:48.26 UTC+2 kirjutas Tony Mountifield: > In article <00b3f9b8-77c7-4537-8a0a-5f4878dcb817@googlegroups.com>, > <kristjanman2k20@gmail.com> wrote: > > reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com: > > > ... > > > > I don't see why people want to make things so difficult. > > Could just put a link to webpage that will open their mail portal. > > Any particular reason you are replying to a post that is over 10 years old? > Maybe someone can find my reply useful. Kristjan Robam > Cheers > Tony > > -- > Tony Mountifield > Work: tony@softins.co.uk - http://www.softins.co.uk > Play: tony@mountifield.org - http://tony.mountifield.org
[toc] | [prev] | [next] | [standalone]
| From | Arno Welzel <usenet@arnowelzel.de> |
|---|---|
| Date | 2020-03-06 09:46 +0100 |
| Message-ID | <hcegugFqjubU1@mid.individual.net> |
| In reply to | #18228 |
Kristjan Robam: > neljapäev, 5. märts 2020 12:48.26 UTC+2 kirjutas Tony Mountifield: >> In article <00b3f9b8-77c7-4537-8a0a-5f4878dcb817@googlegroups.com>, >> <kristjanman2k20@gmail.com> wrote: >>> reede, 14. august 2009 17:21.01 UTC+3 kirjutas Clint....@gmail.com: >>>> ... >>> >>> I don't see why people want to make things so difficult. >>> Could just put a link to webpage that will open their mail portal. >> >> Any particular reason you are replying to a post that is over 10 years old? >> > Maybe someone can find my reply useful. What is useful in this reply? "Put a link to the webpage that will open their mail portal" is no substitude for direct IMAP access. For example: if you want to use IMAP to check for mails arriving on a specific address and then process these mails by a script using a link to the mail portal does not help. -- Arno Welzel https://arnowelzel.de
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.php
csiph-web