Re: wget fails when server requests SSL renegociation

2005-08-26 Thread Hrvoje Niksic
This should now be fixed in the repository, in a slightly different
manner (by setting SSL_MODE_AUTO_RETRY on the SSL context).

Thanks for the report.


wget Mailing List question

2005-08-26 Thread Jonathan
Would it be possible (and is anyone else interested) to have the subject 
line of messages posted to this list prefixed with '[wget]'?


I belong to several development mailing lists that utilize this feature so 
that distributed messages to not get removed by spam filters, or deleted by 
recipients because they have no idea who sent the message.


Often the subject line does not indicate that the message relates to wget. 
For example,  I almost deleted a message with the subject Honor --datadir 
because it looked like spam.  If the subject line read  [wget] 
Honor --datadir it would be much easier to deal with.


Is anyone else interested in this idea?  Is it feasible?

Jonathan 





Re: openssl server renogiation bug in wget

2005-08-26 Thread Hrvoje Niksic
Thanks for the report; I've applied this patch:

2005-08-26  Jeremy Shapiro  [EMAIL PROTECTED]

* openssl.c (ssl_init): Set SSL_MODE_AUTO_RETRY.

Index: openssl.c
===
--- openssl.c   (revision 2063)
+++ openssl.c   (working copy)
@@ -225,6 +225,10 @@
  handles them correctly), allow them in OpenSSL.  */
   SSL_CTX_set_mode (ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
 
+  /* The OpenSSL library can handle renegotiations automatically, so
+ tell it to do so.  */
+  SSL_CTX_set_mode (ssl_ctx, SSL_MODE_AUTO_RETRY);
+
   return true;
 
  error:


Re: wget Mailing List question

2005-08-26 Thread Daniel Stenberg

On Fri, 26 Aug 2005, Jonathan wrote:

Would it be possible (and is anyone else interested) to have the subject 
line of messages posted to this list prefixed with '[wget]'?


Please don't. Subject real estate is precious and limited already is it is. I 
find subject prefixes highly distdurbing.


There is already plenty of info in the headers of each single mail to allow 
them to get filtered accurately without this being needed.


For example: X-Mailing-List: wget@sunsite.dk

--
 -=- Daniel Stenberg -=- http://daniel.haxx.se -=-
  ech`echo xiun|tr nu oc|sed 'sx\([sx]\)\([xoi]\)xo un\2\1 is xg'`ol


Re: wget Mailing List question

2005-08-26 Thread Hrvoje Niksic
Jonathan [EMAIL PROTECTED] writes:

 Would it be possible (and is anyone else interested) to have the
 subject line of messages posted to this list prefixed with '[wget]'?

I am against munging subject lines of mail messages.  The mailing list
software provides headers such as `Mailing-List' and `X-Mailing-List'
which can be used for better and more reliable filtering.


Re: A suggestion for configure.in

2005-08-26 Thread Stepan Kasal
Hello,

On Fri, Aug 26, 2005 at 02:07:16PM +0200, Hrvoje Niksic wrote:
 I've applied a slightly modified version of this patch, thanks.
 [...]  I used elif instead.

thank you, also for correcting my mistake.

Actually, I wasn't aware about the fact that shell elif is portable.
(I checked, and it appears in autoconf source several times, so it really
is portable.)

Thank you.

Stepan