From 7bf5d052f5c289da34d30f1006fa00a9daeeb386 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Tue, 23 Aug 2011 18:51:15 +0000 Subject: [PATCH] 2011-08-23 [paul] 3.7.9cvs50 * src/common/ssl.c probable/possible fix/workaround for bug 2402, 'can't download message from pop3 server' --- ChangeLog | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/common/ssl.c | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index daf480c9f..9213898a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-08-23 [paul] 3.7.9cvs50 + + * src/common/ssl.c + probable/possible fix/workaround for bug 2402, + 'can't download message from pop3 server' + 2011-08-18 [paul] 3.7.9cvs49 * manual/handling.xml diff --git a/PATCHSETS b/PATCHSETS index 6a63d7cbb..24e7317f2 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4201,3 +4201,4 @@ ( cvs diff -u -r 1.101.2.66 -r 1.101.2.67 src/news.c; cvs diff -u -r 1.1.2.15 -r 1.1.2.16 src/etpan/nntp-thread.c; ) > 3.7.9cvs47.patchset ( cvs diff -u -r 1.1.2.24 -r 1.1.2.25 tools/claws.i18n.status.pl; ) > 3.7.9cvs48.patchset ( cvs diff -u -r 1.1.2.16 -r 1.1.2.17 manual/handling.xml; ) > 3.7.9cvs49.patchset +( cvs diff -u -r 1.9.2.43 -r 1.9.2.44 src/common/ssl.c; ) > 3.7.9cvs50.patchset diff --git a/configure.ac b/configure.ac index a972f1fe1..1701ecc64 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=49 +EXTRA_VERSION=50 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/ssl.c b/src/common/ssl.c index 1aa0f4b98..cbf1d3703 100644 --- a/src/common/ssl.c +++ b/src/common/ssl.c @@ -270,6 +270,7 @@ gboolean ssl_init_socket_with_method(SockInfo *sockinfo, SSLMethod method) if (session == NULL || r != 0) return FALSE; + gnutls_transport_set_lowat (session, 1); gnutls_set_default_priority(session); gnutls_protocol_set_priority (session, proto_prio); gnutls_cipher_set_priority (session, cipher_prio); -- 2.25.1