From 7ac88d86319e2ef5b43ad7413f759bd1423ecd21 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Thu, 28 Feb 2002 01:09:05 +0000 Subject: Use the FOLD_SIZE as a recommended folding size, but add a new 2002-02-28 Not Zed * camel-mime-utils.c (header_fold): Use the FOLD_SIZE as a recommended folding size, but add a new FOLD_MAX_SIZE (=998, the smtp max line size) as the hard limit for any output. svn path=/trunk/; revision=15866 --- camel/ChangeLog | 6 ++++++ camel/camel-mime-utils.c | 8 ++++---- camel/camel-mime-utils.h | 4 +++- camel/camel-search-private.c | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index 99235d0922..aea071af4d 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2002-02-28 Not Zed + + * camel-mime-utils.c (header_fold): Use the FOLD_SIZE as a + recommended folding size, but add a new FOLD_MAX_SIZE (=998, the + smtp max line size) as the hard limit for any output. + 2002-02-27 Jeffrey Stedfast * camel-mime-filter-chomp.c (camel_mime_filter_chomp_new): New diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 257c0e323e..b908f86059 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -4080,11 +4080,11 @@ header_fold(const char *in, size_t headerlen) g_string_append(out, "\n\t"); outlen = 1; /* check for very long words, just cut them up */ - while (outlen+len > CAMEL_FOLD_SIZE) { - for (i=0;i CAMEL_FOLD_MAX_SIZE) { + for (i=0;i #include -/* maximum size of a line from header_fold() */ +/* maximum recommended size of a line from header_fold() */ #define CAMEL_FOLD_SIZE (77) +/* maximum hard size of a line from header_fold() */ +#define CAMEL_FOLD_MAX_SIZE (998) #define CAMEL_UUDECODE_STATE_INIT (0) #define CAMEL_UUDECODE_STATE_BEGIN (1 << 16) diff --git a/camel/camel-search-private.c b/camel/camel-search-private.c index a8b73525ae..6ecb64a1ae 100644 --- a/camel/camel-search-private.c +++ b/camel/camel-search-private.c @@ -347,7 +347,7 @@ header_match(const char *value, const char *match, camel_search_match_t how) if (how == CAMEL_SEARCH_MATCH_SOUNDEX) return header_soundex (value, match); - + vlen = strlen(value); mlen = strlen(match); if (vlen < mlen) -- cgit