Re: [PHP] Certificate failure for (IMAP)

2003-11-26 Thread Jason Wong
On Monday 24 November 2003 04:45, QT wrote: > I try your advise which is imap open sample like follows and I get; > > Warning: imap_open(): Couldn't open stream {mail.smsavantaj.com:110/pop3 [snip] It looks like you tried the example in the manual. As the same example worked for me I think that

Re: [PHP] Certificate failure for (IMAP)

2003-11-23 Thread QT
Dear Jason, I try your advise which is imap open sample like follows and I get; Warning: imap_open(): Couldn't open stream {mail.smsavantaj.com:110/pop3 $mbox = imap_open ("{mail.test.com:110}", "[EMAIL PROTECTED]", "1234"); echo "Mailboxes\n"; $folders = imap_listmailbox ($mbox, "{mail.smsav

Re: [PHP] Certificate failure for (IMAP)

2003-11-23 Thread QT
Dear Jason, I am using following code; require "classes.php"; $u = $_GET['u']; $p = $_GET['p']; $uex = explode("@", $u); $u = $uex[0]; $domain = $uex[1]; require "vars.php"; $MainSettings = new GlobalInit(); $TransIDEnabled = $MainSettings->INIGet('session.use_trans_sid'); session_start(); if

Re: [PHP] Certificate failure for (IMAP)

2003-11-22 Thread Jason Wong
On Sunday 23 November 2003 18:49, QT wrote: > I try to connect to email inbox via IMAP but I am getting folowing error: > > Certificate failure for xx self signed certificate: > /C=--/ST=SomeState/L=SomeCity What code are you using? And have you studied the examples for imap_open()? -- Jas

[PHP] Certificate failure for (IMAP)

2003-11-22 Thread QT
Dear Sirs, I try to connect to email inbox via IMAP but I am getting folowing error: Certificate failure for xx self signed certificate: /C=--/ST=SomeState/L=SomeCity Any idea what is it mean? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu