Re: [openssl-users] OpenSSL and iCloud

2015-01-05 Thread Jeffrey Walton
On Mon, Jan 5, 2015 at 5:31 PM, wrote: > Never mind - I got it to work by using: meth = SSLv23_method(); You might consider removing the weak/wounded stuff: meth = SSLv23_method(); ... long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION; SSL_CTX_set_options(c

Re: [openssl-users] OpenSSL and iCloud

2015-01-05 Thread openssl
Never mind - I got it to work by using: meth = SSLv23_method(); > >> >> On Jan 5, 2015, at 12:01 PM, open...@comaxis.com wrote: >>> Are there any known problems using OpenSSL with iCloud? I am trying to >>> connect to imap.mail.me.com using port 993. My call to SSL_Connect() >>> returns 0, with S

Re: [openssl-users] OpenSSL and iCloud

2015-01-05 Thread openssl
> > On Jan 5, 2015, at 12:01 PM, open...@comaxis.com wrote: >> Are there any known problems using OpenSSL with iCloud? I am trying to >> connect to imap.mail.me.com using port 993. My call to SSL_Connect() >> returns 0, with SSL_get_error() returing 1 (SSL_ERROR_SSL). I am using >> OpenSSL vers

Re: [openssl-users] OpenSSL and iCloud

2015-01-05 Thread Wim Lewis
On Jan 5, 2015, at 12:01 PM, open...@comaxis.com wrote: > Are there any known problems using OpenSSL with iCloud? I am trying to > connect to imap.mail.me.com using port 993. My call to SSL_Connect() > returns 0, with SSL_get_error() returing 1 (SSL_ERROR_SSL). I am using > OpenSSL version 1.0.

[openssl-users] OpenSSL and iCloud

2015-01-05 Thread openssl
Are there any known problems using OpenSSL with iCloud? I am trying to connect to imap.mail.me.com using port 993. My call to SSL_Connect() returns 0, with SSL_get_error() returing 1 (SSL_ERROR_SSL). I am using OpenSSL version 1.0.1h, running on Win32. I can use this code with any other IMAP se