From 2ca9eee10a6ddda7c3c9efab49ddbdbb493001d9 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Tue, 20 Jun 2006 06:28:06 +0000 Subject: [PATCH 1/1] 2006-06-20 [colin] 2.3.0cvs25 * src/etpan/imap-thread.c Fix threshold (the append command is often > 32 bytes) --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/etpan/imap-thread.c | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 470e654ff..4d9b66cc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-20 [colin] 2.3.0cvs25 + + * src/etpan/imap-thread.c + Fix threshold (the append command is often > 32 bytes) + 2006-06-19 [colin] 2.3.0cvs24 * src/imap.c diff --git a/PATCHSETS b/PATCHSETS index f1ddc2888..c4f596fef 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1599,3 +1599,4 @@ ( cvs diff -u -r 1.16.2.20 -r 1.16.2.21 src/prefs_customheader.c; ) > 2.3.0cvs22.patchset ( cvs diff -u -r 1.382.2.279 -r 1.382.2.280 src/compose.c; cvs diff -u -r 1.179.2.120 -r 1.179.2.121 src/imap.c; cvs diff -u -r 1.9.2.25 -r 1.9.2.26 src/common/defs.h; cvs diff -u -r 1.1.4.40 -r 1.1.4.41 src/etpan/imap-thread.c; ) > 2.3.0cvs23.patchset ( cvs diff -u -r 1.179.2.121 -r 1.179.2.122 src/imap.c; cvs diff -u -r 1.1.4.41 -r 1.1.4.42 src/etpan/imap-thread.c; ) > 2.3.0cvs24.patchset +( cvs diff -u -r 1.1.4.42 -r 1.1.4.43 src/etpan/imap-thread.c; ) > 2.3.0cvs25.patchset diff --git a/configure.ac b/configure.ac index aefe7a061..7a9b11117 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=3 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=24 +EXTRA_VERSION=25 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/etpan/imap-thread.c b/src/etpan/imap-thread.c index bbba767b0..d9d81ee8a 100644 --- a/src/etpan/imap-thread.c +++ b/src/etpan/imap-thread.c @@ -127,7 +127,7 @@ void imap_logger_append(int direction, const char * str, size_t size) lines = g_strsplit(buf, "\n", -1); - if (direction == 0 || (buf[0] == '*' && buf[1] == ' ') || size < 32) { + if (direction == 0 || (buf[0] == '*' && buf[1] == ' ') || size < 64) { while (lines[i] && *lines[i]) { log_print("IMAP4%c %s\n", direction?'>':'<', lines[i]); i++; -- 2.25.1