<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general">
    <title>gmane.comp.web.curl.general</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13476"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13475"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13474"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13473"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13472"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13471"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13470"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13469"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13468"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13467"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13466"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13465"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13464"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13463"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13462"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13461"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13460"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13459"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13458"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.general/13457"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13476">
    <title>Re: Curl with silent option is outputting data when it should not</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13476</link>
    <description>&lt;pre&gt;
You are not redirecting any error output but the actual body of the response.  
If you want curl to treat 404 as error, you can use the --fail option, which 
will cause curl to return a non-zero exit code in that case.

Kamil
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>Kamil Dudka</dc:creator>
    <dc:date>2013-05-22T15:18:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13475">
    <title>RE: Curl with silent option is outputting data when it should not</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13475</link>
    <description>&lt;pre&gt;Unfortunately this will also redirect some error output which I do want to see.  I tried this using an invalid IP address and the ERROR 404 message was redirected to null.  :-(

-----Original Message-----
From: Kamil Dudka [mailto:kdudka&amp;lt; at &amp;gt;redhat.com] 
Sent: Wednesday, May 22, 2013 8:29 AM
To: Youngman, James
Cc: curl-users&amp;lt; at &amp;gt;cool.haxx.se
Subject: Re: Curl with silent option is outputting data when it should not

On Wednesday 22 May 2013 14:53:57 James.Youngman&amp;lt; at &amp;gt;sungard.com wrote:

Use the -o option of curl to redirect the output to a file.  You can redirect the output to /dev/null on *nix systems in case you do not need it.

Kamil



-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>James.Youngman&lt; at &gt;sungard.com</dc:creator>
    <dc:date>2013-05-22T13:56:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13474">
    <title>Re: Curl with silent option is outputting data when it should not</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13474</link>
    <description>&lt;pre&gt;
Use the -o option of curl to redirect the output to a file.  You can redirect 
the output to /dev/null on *nix systems in case you do not need it.

Kamil
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>Kamil Dudka</dc:creator>
    <dc:date>2013-05-22T13:28:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13473">
    <title>Curl with silent option is outputting data when it should not</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13473</link>
    <description>&lt;pre&gt;Curl is outputting this data even though the silent option is specified.  How can I make curl silent?   Here is the command and the resulting data.

Command:

curl.exe -s -S -u xxxx:xxxx -X POST -H "X-Atlassian-Token: nocheck" -F "file=&amp;lt; at &amp;gt;c:\logs\AIFDBScripts.zip&amp;lt;mailto:file=&amp;lt; at &amp;gt;c:\logs\AIFDBScripts.zip&amp;gt;"
http://10.249.88.155/jira/rest/api/2/issue/SR-2320/attachments


actual results:

[{"self":"http://10.249.88.155/jira/rest/api/2/attachment/461527","id":"461527","filename":"AIFDBScripts.zip","author":{"self":"
http://10.249.88.155/jira/rest/api/2/user?username=james.youngman","name":"james.youngman","emailAddress":"James.Youngman&amp;lt; at &amp;gt;sungar&amp;lt;http://10.249.88.155/jira/rest/api/2/user?username=james.youngman%22,%22name%22:%22james.youngman%22,%22emailAddress%22:%22James.Youngman&amp;lt; at &amp;gt;sungar&amp;gt;
d.com","avatarUrls":{"16x16":"http://10.249.88.155/jira/secure/useravatar?size=small&amp;amp;avatarId=10142","48x48":"http://10.249.88.1
55/jira/secure/useravatar?avatarId=10142"},"displayName":"James.Youngman","active":true},"created":"2013-0&lt;/pre&gt;</description>
    <dc:creator>James.Youngman&lt; at &gt;sungard.com</dc:creator>
    <dc:date>2013-05-22T12:53:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13472">
    <title>Re: Reg:curl NSS -12886 Error in TLS handshake</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13472</link>
    <description>&lt;pre&gt;
-12286 is SSL_ERROR_NO_CYPHER_OVERLAP, you can lookup the error code here:

http://www.mozilla.org/projects/security/pki/nss/ref/ssl/sslerr.html

If you update to new enough versions of libcurl and NSS, you will get the 
human-readable error code and the corresponding error message directly.


The documentation of CURLOPT_SSL_CTX_FUNCTION [1] says:

    This option does only function for libcurl powered by OpenSSL. If libcurl
    was built against another SSL library, this functionality is absent. 

and libcurl on your box apparently uses NSS as the SSL library, not OpenSSL.

Kamil

[1] http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTSSLCTXFUNCTION
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>Kamil Dudka</dc:creator>
    <dc:date>2013-05-22T10:02:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13471">
    <title>Reg:curl NSS -12886 Error in TLS handshake</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13471</link>
    <description>&lt;pre&gt;  Hi,

I am getting NSS -12286 error while trying to load the https page using 
the ca certificate using cacertinpem.c curl c code.
i am using cacert.pem file in the code alog with path. but same thing is 
working when i try using curl -v "https://sampleserve.com:443",in this 
case ssl is taking default ca path as "/etc/tls/certs/ca.budle.crt"

But this c code is not working for both default ca location and external 
path selection of ca aswell.

What is the reason for this error(NSS -12286).


Error:
* About to connect() to fiservices.sterlingbankng.com port 443 (#0)
*   Trying 1.1.1.1... * Connection timed out
*   Trying 1.1.1.2... * connected
* Connected to fiservices.sterlingbankng.com (1.1.1.2) port 443 (#0)
* Initializing NSS with certpath: /etc/pki/nssdb
*   CAfile: ./cacert.pem
   CApath: ./cacert.pem
* NSS error -12286
* Error in TLS handshake, trying SSLv3...
 &amp;gt; GET /CanFI/ HTTP/1.1
Host: sampleserver.com
Accept: */*

* Connection died, retrying a fresh connect
* Closing connection #0
* Issue anoth&lt;/pre&gt;</description>
    <dc:creator>praveen</dc:creator>
    <dc:date>2013-05-22T05:17:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13470">
    <title>Reg proxy authentication random error in Windows OS</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13470</link>
    <description>&lt;pre&gt;I am using libcurl to do HTTP request. My application is running in Windows and I have to send some requests to the server. I am able to communicate with the server without any issues when there are no proxy involved.

However issue arised when I have to go through proxyserver which mandates authentication. I am getting “Authorization Required: 407” randomly. At times it goes through and connects but at time it fails.

I explored the options in libcurl but i could not able to make it work.

Below are my settings with regards to proxy I have tried

curlResultCode = curl_easy_setopt(curlHandle, CURLOPT_PROXY, &amp;lt;proxy-server&amp;gt;);

curlResultCode = curl_easy_setopt(curlHandle, CURLOPT_PROXYPORT, &amp;lt;port number&amp;gt;);

//curlResultCode = curl_easy_setopt(curlHandle, CURLOPT_PROXYAUTH, CURLAUTH_ANY);

OR curlResultCode = curl_easy_setopt(curlHandle, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);

I have tried both ANY and NTLM. At times i am getting "Authentication required: 407" during the easy perform.

I need some help in under&lt;/pre&gt;</description>
    <dc:creator>narayanan manikandan</dc:creator>
    <dc:date>2013-05-21T16:00:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13469">
    <title>Re: How can I append a slash to the URL of a PUT command?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13469</link>
    <description>&lt;pre&gt;

When doing a HTTP PUT, you're supposed to identify the resource you're about 
to create with the request. I would claim an API that requires it to have a 
trailing slash is a bit on the broken side.

But no, curl cannot send a PUT to such a URL in any easy way I can think of. 
libcurl itself can of course though, so a simple fix is probably to write a 
simple program in a language with a libcurl binding.

&lt;/pre&gt;</description>
    <dc:creator>Daniel Stenberg</dc:creator>
    <dc:date>2013-05-19T08:30:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13468">
    <title>Re: Query regarding error number 139 raised during SFTP operation by CURL</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13468</link>
    <description>&lt;pre&gt;

1. Make sure you use recent libcurl and libssh2 versions

2. Build then with debug symbols still present (configure --enable-debug 
perhaps)

3. Use valgrind or gdb to get more info on the crash.

4. Unless you find the root cause, post all the additional details here or to 
the suitable library list (curl-library or libssh2-devel)

&lt;/pre&gt;</description>
    <dc:creator>Daniel Stenberg</dc:creator>
    <dc:date>2013-05-16T07:00:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13467">
    <title>Query regarding error number 139 raised during SFTP operation by CURL</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13467</link>
    <description>&lt;pre&gt;Hi,

  While using the following command for SFTP using CURL, a segmentation fault is observed with the error number 139 :
  curl -u &amp;lt;username&amp;gt; passwd&amp;gt; --retry 2 --connect-timeout 2 --retry-delay 540 --sftp-create-dirs -k -T &amp;lt;tarfile&amp;gt; sftp://&amp;lt;ipv4addr&amp;gt;/&amp;lt;path&amp;gt;/&amp;lt;tarfile&amp;gt;

  Could you please help me understand the reason for this? How can this be rectified?

Thanks and regards,
Anitha-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
&lt;/pre&gt;</description>
    <dc:creator>anitha achar</dc:creator>
    <dc:date>2013-05-16T06:33:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13466">
    <title>Re: can't disable RTMP support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13466</link>
    <description>&lt;pre&gt;

Thanks for this report. What curl version is this? BTW, we're a bit overloaded 
with issues so to make sure we don't forget or just drop your report, please 
submit it here: https://sourceforge.net/p/curl/bugs/

&lt;/pre&gt;</description>
    <dc:creator>Daniel Stenberg</dc:creator>
    <dc:date>2013-05-15T21:33:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13465">
    <title>Re: Reg:Https curl out of memory error(27)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13465</link>
    <description>&lt;pre&gt;Hi,

The above 27 out of memory error is resolved by giving complete path. And
also i am getting "Unable to load client key -8178" error while
authenticating with https server using ssl certificate.

Curl command :
curl  -v "https://url:443" --cert "./testcert.pem" --cacert "./cacert.pem"
--pubkey "./testkey.pem" --cert-type PEM

Thanks &amp;amp; Regards

praveen








On 15 May 2013 10:46, Nick Zitzmann &amp;lt;nick&amp;lt; at &amp;gt;chronosnet.com&amp;gt; wrote:




&lt;/pre&gt;</description>
    <dc:creator>praveen kumar</dc:creator>
    <dc:date>2013-05-15T20:01:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13464">
    <title>Re: Reg:Https curl out of memory error(27)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13464</link>
    <description>&lt;pre&gt;
On May 15, 2013, at 3:27 AM, praveen &amp;lt;praveen.trams&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:


1. Version 7.21 is really old. Have you tried using a newer version?

2. You are using curl with NSS, not OpenSSL. NSS plays by different rules because it is database-driven while also supporting files, and not strictly file-driven like OpenSSL. So to use PEM files with NSS, you need to start the name with a full or relative file path. So "testcert.pem" probably won't work, but "./testcert.pem" ought to work.

Nick Zitzmann
&amp;lt;http://www.chronosnet.com/&amp;gt;


-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>Nick Zitzmann</dc:creator>
    <dc:date>2013-05-15T17:46:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13463">
    <title>Re: cURL hangs when downloading a CSV file from behind a proxy</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13463</link>
    <description>&lt;pre&gt;
I lucked out on this. When I moved the project to the server where it's
actually going to reside, the hangup stopped.  This server doesn't have to
go through the proxy, so this makes me fairly confident that an issue on
Forefront TMG was making this hang, not an issue with cURL.  Thanks for the
help with troubleshooting.

Adam
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
&lt;/pre&gt;</description>
    <dc:creator>Adam Larsen</dc:creator>
    <dc:date>2013-05-15T13:24:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13462">
    <title>Reg:Https curl out of memory error(27)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13462</link>
    <description>&lt;pre&gt;  Hi,

I have problem while posting the data into the https url using SSL 
certificates(Error :27 out of memory).
The same problem while trying with curl command mode. Both c curl code 
and command throwing same error.

version details:

OS   :   Fedora 14
curl :   curl 7.21.0 (i386-redhat-linux-gnu) libcurl/7.21.0 NSS/3.12.7.0 
zlib/1.2.5 libidn/1.18 libssh2/1.2.4
openssl: OpenSSL 1.0.0a-fips 1 Jun 2010

Please help to resolve this error.

curl command:

     curl "https:&amp;lt;ip&amp;gt;:&amp;lt;port&amp;gt;/request/" --cert testcert.pem --cacert 
cacert.pem --pubkey testkey.pem --cert-type PEM

curl c code:

int main(void)
{

   int i;
   CURL *curl;
   CURLcode res;
   FILE *headerfile;
   FILE *out_fd = (FILE *) 0;
   const char *pPassphrase = NULL;
   char buf_url[256]="https://&amp;lt;ip&amp;gt;:&amp;lt;port&amp;gt;";

   static const char *pCertFile = "testcert.pem";
   static const char *pCACertFile="cacert.pem";

   const char *pKeyName;
   const char *pKeyType;
   const char *pEngine;


         pKeyName  = "testkey.pem";
         pKeyType  = "PEM";
 &lt;/pre&gt;</description>
    <dc:creator>praveen</dc:creator>
    <dc:date>2013-05-15T09:27:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13461">
    <title>Re: After calling curl in a bat file no other commands execute</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13461</link>
    <description>&lt;pre&gt;
Sorry yes I meant -v.

Found the source of the problem. The bat file needed CALL before the call
to curl to resume after the call to cUrl had completed.

Thanks for your help.
Regards
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
&lt;/pre&gt;</description>
    <dc:creator>member website</dc:creator>
    <dc:date>2013-05-14T13:46:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13460">
    <title>How can I append a slash to the URL of a PUT command?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13460</link>
    <description>&lt;pre&gt;Hi All,

I have also posted this question here:
http://stackoverflow.com/questions/16516058/append-trailing-slash-to-curl-file-upload

I'm doing the following cURL command:
curl -i -b cookie.txt -X PUT -T "somefile.txt" http://myserver/api/upload/

However, I need the url to have a trailing slash, but the result is "
http://myserver/api/upload/somefile.txt". Is there a way to get a slash
appended at the end?

Thank you,
Josh
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
&lt;/pre&gt;</description>
    <dc:creator>Josh Mahoney</dc:creator>
    <dc:date>2013-05-13T17:26:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13459">
    <title>can't disable RTMP support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13459</link>
    <description>&lt;pre&gt;Hello All,

I want to disable RTMP support. In the configure script I use the flag
--disable-rtmp and --without-rtmp but it seems that these two options
doesn't disable RTPM support. I had to manually edit the Makefile and
curl_config.h file to disable this options. So it seems that there is a bug
in the configure script.

Regards
Chris
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
&lt;/pre&gt;</description>
    <dc:creator>Chris Herssens</dc:creator>
    <dc:date>2013-05-13T09:42:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13458">
    <title>Re: Getting -Q to work</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13458</link>
    <description>&lt;pre&gt;

Add -v and see the command being sent. -Q takes one parameter so this will 
only send "rm" while "file.name.zip" will be treated as an additional URL on 
the command line!


This sends "rm file.name.zip" to the server. But there's no FTP command called 
'rm' so there's no suprise here. The command to delete a file is called 'DELE' 
in FTP protocol land.


Yes, assuming you use the correct commands. 'cd' is CWD for example...

&lt;/pre&gt;</description>
    <dc:creator>Daniel Stenberg</dc:creator>
    <dc:date>2013-05-13T07:48:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13457">
    <title>Getting -Q to work</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13457</link>
    <description>&lt;pre&gt;I'm trying to delete some files on a ftps server and keep getting the ftp 500
error return code.

If I do the following, the root directory is listed just fine, along with the
names of the files I want to delete:

    curl -k -u username:password ftps://domain.com/

If I then do the following, it errors out:

    curl -k -u username:password ftps://domain.com/ -Q rm file.name.zip

or

    curl -k -u username:password ftps://domain.com/ -Q "rm file.name.zip"

Once I get that to work, I'm assuming I can delete subdirectory files by
doing the following:

    curl -k -u username:password ftps://domain.com/ -Q cd subdir -Q rm file.name.zip

Thanks for any tips on getting this to work.

MB
&lt;/pre&gt;</description>
    <dc:creator>Mike Brown</dc:creator>
    <dc:date>2013-05-13T03:53:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.general/13456">
    <title>Re: After calling curl in a bat file no other commands execute</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.general/13456</link>
    <description>&lt;pre&gt;
I assume you mean -v


Once the connection is closed, there's nothing left for curl to do but exit.
Are you positive that curl is still running after this point? Or is it some
other artifact of your environment?

-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html

&lt;/pre&gt;</description>
    <dc:creator>Dan Fandrich</dc:creator>
    <dc:date>2013-05-10T18:17:16</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.curl.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.curl.general</link>
  </textinput>
</rdf:RDF>
