2006-06-20 [colin] 2.3.0cvs25
authorColin Leroy <colin@colino.net>
Tue, 20 Jun 2006 06:28:06 +0000 (06:28 +0000)
committerColin Leroy <colin@colino.net>
Tue, 20 Jun 2006 06:28:06 +0000 (06:28 +0000)
* src/etpan/imap-thread.c
Fix threshold (the append command is often > 32 bytes)

ChangeLog
PATCHSETS
configure.ac
src/etpan/imap-thread.c

index 470e654ffb16f125869ffae5d799aa220083f3aa..4d9b66cc85f07b0d2c4b632bca57b8ddc939c26b 100644 (file)
--- 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
 2006-06-19 [colin]     2.3.0cvs24
 
        * src/imap.c
index f1ddc2888af33573742feef3ab769c7bc1cd43f3..c4f596fef6fe157c15aa6286ad21b3d336bb40c4 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( 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.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
index aefe7a061aa700bd0b7379f61745e78682a2a562..7a9b111178a5214805aa632a1df5cea5b555697e 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=3
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=24
+EXTRA_VERSION=25
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index bbba767b095905901bb9fc48bdebe0024032b1f1..d9d81ee8ab24c810e6b75beae6122f8745d594b0 100644 (file)
@@ -127,7 +127,7 @@ void imap_logger_append(int direction, const char * str, size_t size)
 
        lines = g_strsplit(buf, "\n", -1);
 
 
        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++;
                while (lines[i] && *lines[i]) {
                        log_print("IMAP4%c %s\n", direction?'>':'<', lines[i]);
                        i++;