Hi,
I've write a script that it try to open a connection with imap_open() function:
$inbox = @imap_open($host . $folder, $user, $pass) or die (imap_last_error());
and:
$host ="{mail.blizzyitalia.com/imap}";
when the script is executed the imap_last_error() write this error:
TLS/SSL failure for mail.blizzyitalia.com: SSL negotiation failed
i've tried to change the $host variable in this way:
$host ="{mail.blizzyitalia.com:143}";
$host ="{mail.blizzyitalia.com:110/pop3}";
$host ="{mail.blizzyitalia.com:993/imap/ssl}";
$host ="{mail.blizzyitalia.com:993/imap/ssl}";
$host ="{mail.blizzyitalia.com:995/pop3/ssl/novalidate-cert}";
but everytime the imap_last_error() function write the same error when i try to use a non_ssl protocol.
When i try to use a SSL protocol it sais me that can't connect with host.
What's the problem?
Hi all and tks all