commit 7bf5d052f5c289da34d30f1006fa00a9daeeb386
parent 5ceb60b03ee1d2e2731b5eccd14fc61c61dc9f43
Author: Paul Mangan <paul@claws-mail.org>
Date: Tue, 23 Aug 2011 18:51:15 +0000
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'
Diffstat:
4 files changed, 9 insertions(+), 1 deletion(-)
diff --git 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
@@ -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
@@ -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
@@ -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);