Assigning "sub maintainers" for Windows and cmake!

2018-05-21 Thread Daniel Stenberg
Hi, Any takers? I do a lot of stuff in this project. I merge something like 80% of all commits and I (currently) author around 60% of all commits. I do this because I think it's fun and I enjoy doing it. And I feel that know the technologies involved. There are however two specific areas

Re: Certificates problem

2018-05-21 Thread dp
Ah HA! CURLOPT_CAINFO does indeed work with the static library. Thank you! That's real progress (I swear I had tried that before without luck, but I must not have). However, I still get "Unsupported protocol" if I link with libcurl.lib instead of libcurl_a.lib. Any thoughts on that?

Re: Certificates problem

2018-05-21 Thread dp
No, I'm not sure the CA is used to sign. I tried it as a guess. Which call is CAFILE use with? I'm not finding it listed in the API. -Original Message- From: "Waitman Gobble" [gobble...@gmail.com] Date: 05/21/2018 09:17 AM To: "libcurl development" Subject:

Re: Certificates problem

2018-05-21 Thread Patrick Schlangen
Hi, maybe try CURLOPT_CAINFO instead of CURLOPT_ISSUERCERT? - Patrick --- Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library Etiquette: https://curl.haxx.se/mail/etiquette.html

Re: Old Curl Project

2018-05-21 Thread Daniel Stenberg
On Mon, 21 May 2018, Don Landsom wrote: All seems OK, successfully built everything and SMTP showed up as a protocol, the VB app was able to connect to a mail server, but Curl doesn't seem to be using SSL so the login request was rejected. It doesn't use SSL unless you tell it to. For SMTP

Re: Certificates problem

2018-05-21 Thread Waitman Gobble
On Mon, May 21, 2018 at 9:46 AM, dp wrote: > I am having trouble getting libcurl to work with a secure website. I am using > cUrl version 7.59.0, OpenSSL 1.0.2, compiling with Visual Studio 10, and > running this on XP/SP3. I built both static and DLL libraries, and that

Re: Old Curl Project

2018-05-21 Thread Don Landsom
Dang - celebrated too soon. All seems OK, successfully built everything and SMTP showed up as a protocol, the VB app was able to connect to a mail server, but Curl doesn't seem to be using SSL so the login request was rejected. Openssl compiled without errors and all of the provided test

Certificates problem

2018-05-21 Thread dp
I am having trouble getting libcurl to work with a secure website. I am using cUrl version 7.59.0, OpenSSL 1.0.2, compiling with Visual Studio 10, and running this on XP/SP3. I built both static and DLL libraries, and that completed without any errors. I can link either library without warnings

Re: Old Curl Project

2018-05-21 Thread Don Landsom
Daniel - thanks for the info, especially about CURL_STATICLIB. Its been like 2 steps forward and 3 steps back, but I've got things built. The VB app is able to make calls through vblibcurl to libcurl. Checking the Curl version / protocol info, SMTP is displayed which was what we were shooting