State of POP3 in curl?

2012-01-31 Thread Rich Gray
I've done something foolish. After doing an amazingly clean implementation of some HTTP scrapping using libcurl, I mentioned to my boss that libcurl also does pop3. Now we have a requirement for it and I got charged with getting a prototype going. (Or directing a co-worker to do so.) For a

http_proxy and https_proxy

2012-01-31 Thread Clemens Buchacher
Hi, I was struggling a few hours to get my http proxy to work with git, which uses libcurl. My mistake was that I had set only the http_proxy env variable, but I was trying to clone an https:// url. I think this is an easy mistake, and in my experience an http proxy server is also an https proxy

Re: http_proxy and https_proxy

2012-01-31 Thread Daniel Stenberg
On Tue, 31 Jan 2012, Clemens Buchacher wrote: I was struggling a few hours to get my http proxy to work with git, which uses libcurl. My mistake was that I had set only the http_proxy env variable, but I was trying to clone an https:// url. I think this is an easy mistake, and in my

Invalid proxy settings

2012-01-31 Thread Chandrakant Bagul -ERS, HCL Tech
Hi All, I have proxy server(Squid) with IP address of 192.168.1.12. In my curl code I use following code to set proxy settings: curl_easy_setopt(pCurl, CURLOPT_PROXY, proxyAddress); curl_easy_setopt(pCurl, CURLOPT_PROXYPORT, port); check response code after execution using