Re: [bagder/curl] 632e50: msvc: move Makefile.msvc.names into winbuild/

2013-02-07 Thread Yang Tse
On Wed, Feb 6, 2013 at 11:16 PM, GitHub nore...@github.com wrote: Commit: 632e50ca8d71a309ea3863acac5f1a7f88633e69 https://github.com/bagder/curl/commit/632e50ca8d71a309ea3863acac5f1a7f88633e69 Author: Daniel Stenberg dan...@haxx.se Date: 2013-02-06 (Wed, 06 Feb 2013)

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Yang Tse
On Wed, Feb 6, 2013 at 11:30 PM, GitHub nore...@github.com wrote: Commit: 0e66d5878edc3d7ffc445116d194b58bbc7504b9 https://github.com/bagder/curl/commit/0e66d5878edc3d7ffc445116d194b58bbc7504b9 Author: Daniel Stenberg dan...@haxx.se Date: 2013-02-06 (Wed, 06 Feb 2013)

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Gisle Vanem
Yang Tse yangs...@gmail.com wrote: The possibility of building by other means is no reason to drop this. Sometimes the best way of debugging something is using the IDE, even when it is possible to build using makefiles. Also. MSVC6 IDE can generate makefiles from project files. Not sure if

Re: [PATCH] More features changes

2013-02-07 Thread Gisle Vanem
Nick Zitzmann n...@chronosnet.com wrote: @@ -173,6 +175,12 @@ FOOTNOTES *4 = requires FBopenssl *5 = requires a krb4 library, such as the MIT one or similar. *6 = requires c-ares - *7 = requires OpenSSL or NSS, as GnuTLS only supports SSLv3 and TLSv1 + *7 = requires OpenSSL, NSS, qssl,

FTP: Got a 230 ftp-server response when 220 was expected

2013-02-07 Thread Anders Havn
Hi, I'm trying to connect via FTP to my USB storage device. It fails when trying to connect and the error message (log) from curl is: 230 User logged in. Got a 230 ftp-server response when 220 was expected Error I can connect to the server with FileZilla and other clients. I can connect to

Re: [bagder/curl] 632e50: msvc: move Makefile.msvc.names into winbuild/

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Yang Tse wrote: msvc: move Makefile.msvc.names into winbuild/ This will make it seem that file Makefile.msvc.names solely belongs to the build system which lives in the winbuild subdirectory, which is not the case. No, but the name is 'winbuild' and it is windows

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Yang Tse wrote: vc: remove explicit MSVC6 IDE project file and documentation VC6 is _very_ old and we provide working makefiles even for that compiler. Users who build with the IDE never use that method and project file anyway and it was just lingering in the root dir.

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread kristian . fiskerstrand
Just thinking out loud, but is it an option to keep the project files etc in a separate subdir, to be moved to root dir by the packager if needed? That seems to be an intersection between both needs? Brgds, Sent from my BlackBerry® smartphone on Telenor -Original Message- From:

SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Volker Schmid
Hello, I might be in the wrong discussion group but I'm using cURL to send SMTP messages. The point is, that the messages seem to work fine in general. But if a Exchange 2003 server is somewhere in the loop, the attached file is destroyed after about 3000 bytes (depends on message size). I

Re: Errors/crashes with FTP using multi interface?

2013-02-07 Thread Sam Deane
Hi Nick, Apologies if this reply breaks the thread - I forgot that I had email delivery turned off for this list, so I've just seen your reply, and don't have an actual mail to reply to. I believe that I have the threading set up correctly. You believe you do. Can you confirm that? Our

RE: SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Steve Holme
Hi Volker, On Thu, 7 Feb 2013, Volker Schmid wrote: I might be in the wrong discussion group but I'm using cURL to send SMTP messages. The point is, that the messages seem to work fine in general. But if a Exchange 2003 server is somewhere in the loop, the attached file is destroyed after

Re: SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Volker Schmid
Hello Steve, thank you for your fast reply. Most of what you've done looks okay to me... Have you tried expanding the content-disposition header in the attachment sub message to use the size attribute? Content-Disposition: Attachment; filename=bnclan.gif I would also recommend setting

Re: [bagder/curl] 632e50: msvc: move Makefile.msvc.names into winbuild/

2013-02-07 Thread Yang Tse
On Thu, Feb 7, 2013, Daniel Stenberg wrote: No, but the name is 'winbuild' and it is windows related. I realize it isn't optimal but then neither is having two build systems for Windows (in different places) - I *really* would like to see them merge to a single one at some point. Two? :-)

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Yang Tse
On Thu, Feb 7, 2013, Daniel Stenberg wrote: Okay. I grepped around for references to vc6curl.dsw in files but I found none. I'm listening and if you really think it should be left where it was then I'll revert. Also, it wouldn't mean that we drop support for building with that environment.

Re: SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Volker Schmid
I got it! My base64 encoded lines had the length of 74 characters per line. I changed this to use 72 characters (I have seen this while examining other Outlook files) and now it works. Unbelievable. I thought that 76 was the maximum: http://en.wikipedia.org/wiki/Base64#MIME So the problem

RE: SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Steve Holme
Hi again, On Thu, 7 Feb 2013, Volker Schmid wrote: I added everything. Now it looks like this: Content-Type: image/gif; name=bnclan.gif Content-Transfer-Encoding: base64 Content-Disposition: Attachment; filename=bnclan.gif; size=8154; creation-date=Date: Thu, 07 Feb 2013

RE: SMTP messages are destroyed by Exchange 2003 only

2013-02-07 Thread Steve Holme
Hiya, On Thu, 7 Feb 2013, Volker Schmid wrote: I got it! Cool... My base64 encoded lines had the length of 74 characters per line. I changed this to use 72 characters (I have seen this while examining other Outlook files) and now it works. Unbelievable. Interesting... I thought that

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Rich Gray
Daniel Stenberg wrote: On Thu, 7 Feb 2013, Yang Tse wrote: vc: remove explicit MSVC6 IDE project file and documentation VC6 is _very_ old and we provide working makefiles even for that compiler. Users who build with the IDE never use that method and project file anyway and it was just

Re: [PATCH] More features changes

2013-02-07 Thread Nick Zitzmann
On Feb 7, 2013, at 4:28 AM, Gisle Vanem gva...@broadpark.no wrote: - *7 = requires OpenSSL or NSS, as GnuTLS only supports SSLv3 and TLSv1 + *7 = requires OpenSSL, NSS, qssl, schannel, or Secure Transport; GnuTLS, for + example, only supports SSLv3 and TLSv1 What about PolarSSL?

Re: [bagder/curl] 632e50: msvc: move Makefile.msvc.names into winbuild/

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Yang Tse wrote: No, but the name is 'winbuild' and it is windows related. I realize it isn't optimal but then neither is having two build systems for Windows (in different places) - I *really* would like to see them merge to a single one at some point. Two? :-) Counting

Re: FTP: Got a 230 ftp-server response when 220 was expected

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Anders Havn wrote: I'm trying to connect via FTP to my USB storage device. It fails when trying to connect and the error message (log) from curl is: 230 User logged in. Got a 230 ftp-server response when 220 was expected Error So your server sends a 230 immediately as a

Re: Slow Upload Performance on High-Bandwidth connections on windows

2013-02-07 Thread Daniel Stenberg
On Wed, 6 Feb 2013, Kurushin Andrey wrote: 1. the main bug report (filezilla vs far manager vs curl) contains test of cross-countries test results (ping 8ms). recent tests (with custom builds of 7.28.1) were made inside single subnet (ping 1ms) so they have better speed values. Well, 8 vs

http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Mark Burns
Somewhat ironically, the file mentioned above is served over ordinary HTTP. My journey to this mailing list was by first noticing a popular ruby library not verifying SSL certs, then reading about verifying certificates: http://jamesgolick.com/2011/2/15/verify-none..html More detailed article:

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Kristian Fiskerstrand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 02/07/2013 10:24 PM, Mark Burns wrote: Somewhat ironically, the file mentioned above is served over ordinary HTTP. ... Anyway, I was wondering if it might be possible to update the website to serve these over a secure connection?

Re: [bagder/curl] 611ec0: emacs files: remove from git and dist

2013-02-07 Thread Dan Fandrich
On Thu, Feb 07, 2013 at 11:28:59AM +0100, Yang Tse wrote: Pushing makefiles down into the packages subdirectories makes it an increased pain when we need to make changes that affect all build systems. In this case the risk of missing stuff in this specific file is even greater given it does

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Mark Burns wrote: Anyway, I was wondering if it might be possible to update the website to serve these over a secure connection? Out of curiosity. If it would be hosted on HTTPS, which ca cert bundle would you use when you download the ca cert bundle? But the answer is

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Kristian Fiskerstrand wrote: Anyway, I was wondering if it might be possible to update the website to serve these over a secure connection? Alternatively (or in addition) could it make sense to digitally sign the files using the OpenPGP standard (GnuPG) ? That's an

Re: Slow Upload Performance on High-Bandwidth connections on windows

2013-02-07 Thread Christian Hägele
Kurushin Andrey ajax16384 at gmail.com writes: 1. the main bug report (filezilla vs far manager vs curl) contains test of cross-countries test results (ping 8ms). recent tests (with custom builds of 7.28.1) were made inside single subnet (ping 1ms) so they have better speed values.

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Kristian Fiskerstrand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 02/07/2013 10:40 PM, Daniel Stenberg wrote: On Thu, 7 Feb 2013, Kristian Fiskerstrand wrote: Anyway, I was wondering if it might be possible to update the website to serve these over a secure connection? Alternatively (or in addition)

Re: Patches for better PolarSSL 1.1.x and 1.2.x support

2013-02-07 Thread Daniel Stenberg
On Tue, 29 Jan 2013, paul_c...@brainspark.nl wrote: We wanted to update libcurl support for both features in the 1.1 and the 1.2 branch of the PolarSSL SSL library. Thanks a lot. Here are my comments: - build with configure --enable-debug and fix the warnings lib/checksrc.pl points out. I

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Ralph Mitchell
On Thu, Feb 7, 2013 at 4:47 PM, Kristian Fiskerstrand kristian.fiskerstr...@sumptuouscapital.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 02/07/2013 10:40 PM, Daniel Stenberg wrote: On Thu, 7 Feb 2013, Kristian Fiskerstrand wrote: Anyway, I was wondering if it might be

Re: [bagder/curl] 0e66d5: vc: remove explicit MSVC6 IDE project file and doc...

2013-02-07 Thread Daniel Stenberg
On Thu, 7 Feb 2013, Yang Tse wrote: Would it be fine with you then if I move, and adapt, the VC6 IDE stuff into a subdirectory tree named 'vc' (lowercase) which hangs directly from the root subdirectory? Sounds perfect! -- / daniel.haxx.se

Re: [PATCH] Support for OAuth 2.0 two-legged authorization and the HTTP MAC Internet-Draft

2013-02-07 Thread Daniel Stenberg
Hi Yves, Thanks for the patch and your efforts! Do you have a rebased version of this patch for me to try? Also, I would like to see some test cases/examples of how this is used. That will help me do a full review. Still, I've read the patch and here are my comments for now: My first

Re: Errors/crashes with FTP using multi interface?

2013-02-07 Thread Nick Zitzmann
On Feb 7, 2013, at 7:17 AM, Sam Deane s...@elegantchaos.com wrote: We did try the trunk, but ran into some other problems with that - instead of getting server did not report OK errors, we were getting stalls instead where an upload/download simply failed to finish. This prevented us from

Re: [PATCH] Support for OAuth 2.0 two-legged authorization and the HTTP MAC Internet-Draft

2013-02-07 Thread Yves Arrouye
Hi Yves, Thanks for the patch and your efforts! Do you have a rebased version of this patch for me to try? I am not sureŠ I tried and got conflicts, then was told by git my branch was out of sync, then redid a git pull --rebase upstream and got a bunch of conflicts againŠ Solved them,