<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/tests/data/test1321, branch gemini-meta</title>
<subtitle>cURL mirror with patches applied
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/'/>
<entry>
<title>tests: use proxy feature</title>
<updated>2019-10-15T05:56:55+00:00</updated>
<author>
<name>Marcel Raad</name>
<email>Marcel.Raad@teamviewer.com</email>
</author>
<published>2019-10-14T20:29:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=476eb88171982a967c35e18d4439de3a848fc916'/>
<id>476eb88171982a967c35e18d4439de3a848fc916</id>
<content type='text'>
This makes the tests succeed when using --disable-proxy.

Closes https://github.com/curl/curl/pull/4488
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes the tests succeed when using --disable-proxy.

Closes https://github.com/curl/curl/pull/4488
</pre>
</div>
</content>
</entry>
<entry>
<title>imap: change from "FETCH" to "UID FETCH"</title>
<updated>2018-09-06T08:57:48+00:00</updated>
<author>
<name>Nicklas Avén</name>
<email>nicklas.aven@jordogskog.no</email>
</author>
<published>2018-07-31T11:12:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=6987fcef657710f800b05dd79ff744087b15c73d'/>
<id>6987fcef657710f800b05dd79ff744087b15c73d</id>
<content type='text'>
... and add "MAILINDEX".

As described in #2789, this is a suggested solution.  Changing UID=xx to
actually get mail with UID xx and add "MAILINDEX" to get a mail with a
special index in the mail box (old behavior).  So MAILINDEX=1 gives the
first non deleted mail in the mail box.

Fixes #2789
Closes #2815
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... and add "MAILINDEX".

As described in #2789, this is a suggested solution.  Changing UID=xx to
actually get mail with UID xx and add "MAILINDEX" to get a mail with a
special index in the mail box (old behavior).  So MAILINDEX=1 gives the
first non deleted mail in the mail box.

Fixes #2789
Closes #2815
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: show headers in bold</title>
<updated>2018-05-21T18:05:05+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-05-17T11:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c1c27625c797cfb7b21128484b4990446c1e92d9'/>
<id>c1c27625c797cfb7b21128484b4990446c1e92d9</id>
<content type='text'>
The feature is only enabled if the output is believed to be a tty.

-J: There's some minor differences and improvements in -J handling, as
now J should work with -i and it actually creates a file first using the
initial name and then *renames* that to the one found in
Content-Disposition (if any).

-i: only shows headers for HTTP transfers now (as documented).
Previously it would also show for pieces of the transfer that were HTTP
(for example when doing FTP over a HTTP proxy).

-i: now shows trailers as well. Previously they were not shown at all.

--libcurl: the CURLOPT_HEADER is no longer set, as the header output is
now done in the header callback.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The feature is only enabled if the output is believed to be a tty.

-J: There's some minor differences and improvements in -J handling, as
now J should work with -i and it actually creates a file first using the
initial name and then *renames* that to the one found in
Content-Disposition (if any).

-i: only shows headers for HTTP transfers now (as documented).
Previously it would also show for pieces of the transfer that were HTTP
(for example when doing FTP over a HTTP proxy).

-i: now shows trailers as well. Previously they were not shown at all.

--libcurl: the CURLOPT_HEADER is no longer set, as the header output is
now done in the header callback.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Proxy-Connection: stop sending this header by default"</title>
<updated>2016-08-16T06:36:04+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2016-08-16T06:36:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=93b0d907d57453b481cd9aa15bd258942e4dd34e'/>
<id>93b0d907d57453b481cd9aa15bd258942e4dd34e</id>
<content type='text'>
This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
</pre>
</div>
</content>
</entry>
<entry>
<title>Proxy-Connection: stop sending this header by default</title>
<updated>2016-02-08T10:09:40+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2016-02-04T14:07:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=113f04e664b16b944e64498a73a4dab990fe9a68'/>
<id>113f04e664b16b944e64498a73a4dab990fe9a68</id>
<content type='text'>
RFC 7230 says we should stop. Firefox already stopped.

Bug: https://github.com/curl/curl/issues/633
Reported-By: Brad Fitzpatrick

Closes #633
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC 7230 says we should stop. Firefox already stopped.

Bug: https://github.com/curl/curl/issues/633
Reported-By: Brad Fitzpatrick

Closes #633
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: added missing &lt;features&gt; http to a number of tests</title>
<updated>2014-01-25T11:47:04+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2014-01-25T11:47:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=f5860fd5fc072dbecf2abf2ed004f5a868194f33'/>
<id>f5860fd5fc072dbecf2abf2ed004f5a868194f33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test1509: verify proxy header response headers count</title>
<updated>2013-03-27T14:30:46+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2013-03-15T16:28:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=1e29d275c643ef6aab7948f0f55a7a9397e56b42'/>
<id>1e29d275c643ef6aab7948f0f55a7a9397e56b42</id>
<content type='text'>
Modified sws to support and use custom CONNECT responses instead of the
previously naive hard-coded version. Made the HTTP test server able to
extract test case number from the host name in a CONNECT request by
finding the number after the last dot. It makes 'machine.moo.123' use
test case 123.

Adapted a larger amount of tests to the new &lt;connect&gt; style.

Bug: http://curl.haxx.se/bug/view.cgi?id=1204
Reported by: Martin Jansen
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Modified sws to support and use custom CONNECT responses instead of the
previously naive hard-coded version. Made the HTTP test server able to
extract test case number from the host name in a CONNECT request by
finding the number after the last dot. It makes 'machine.moo.123' use
test case 123.

Adapted a larger amount of tests to the new &lt;connect&gt; style.

Bug: http://curl.haxx.se/bug/view.cgi?id=1204
Reported by: Martin Jansen
</pre>
</div>
</content>
</entry>
<entry>
<title>imap-tests: Added CRLF to reply data to be compliant with RFC-822</title>
<updated>2013-03-21T12:42:32+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2013-03-21T12:42:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c0c46c3137a3f1dea014cfa69588c4e121710cf7'/>
<id>c0c46c3137a3f1dea014cfa69588c4e121710cf7</id>
<content type='text'>
Updated the reply data in tests: 800, 801, 802, 804 and 1321 to possess
the CRLF as per RFC-822.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated the reply data in tests: 800, 801, 802, 804 and 1321 to possess
the CRLF as per RFC-822.
</pre>
</div>
</content>
</entry>
<entry>
<title>imap: Fixed test801 and test1321 to specify a message UID</title>
<updated>2013-03-06T21:38:19+00:00</updated>
<author>
<name>Jiri Hruska</name>
<email>jirka@fud.cz</email>
</author>
<published>2013-03-06T21:19:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c1ce09d4703cc54db2aa045cbdc94fb310d4f3dd'/>
<id>c1ce09d4703cc54db2aa045cbdc94fb310d4f3dd</id>
<content type='text'>
Just a folder list would be retrieved if UID was not specified now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just a folder list would be retrieved if UID was not specified now.
</pre>
</div>
</content>
</entry>
<entry>
<title>imap: Added the ability to FETCH a specific UID and SECTION</title>
<updated>2013-02-23T21:11:47+00:00</updated>
<author>
<name>Jiri Hruska</name>
<email>jirka@fud.cz</email>
</author>
<published>2013-02-23T21:05:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=5c5b7c7146b07c15c72ff80f0b2438659a827f29'/>
<id>5c5b7c7146b07c15c72ff80f0b2438659a827f29</id>
<content type='text'>
Updated the FETCH command to send the UID and SECTION parsed from the
URL. By default the BODY specifier doesn't include a section, BODY[] is
now sent whereas BODY[TEXT] was previously sent. In my opinion
retrieving just the message text is rarely useful when dealing with
emails, as the headers are required for example, so that functionality
is not retained. In can however be simulated by adding SECTION=TEXT to
the URL.

Also updated test801 and test1321 due to the BODY change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated the FETCH command to send the UID and SECTION parsed from the
URL. By default the BODY specifier doesn't include a section, BODY[] is
now sent whereas BODY[TEXT] was previously sent. In my opinion
retrieving just the message text is rarely useful when dealing with
emails, as the headers are required for example, so that functionality
is not retained. In can however be simulated by adding SECTION=TEXT to
the URL.

Also updated test801 and test1321 due to the BODY change.
</pre>
</div>
</content>
</entry>
</feed>
