diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-05 12:02:38 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-05 12:02:38 +0800 |
commit | 31cab455ffb75a66ea22dbda62631d64b3a8b699 (patch) | |
tree | 576d59385c64425120a2e626fd8951fa8f778979 /camel/ChangeLog | |
parent | 6a99ce9981123734b5e2cb024be69903534eec49 (diff) | |
download | gsoc2013-evolution-31cab455ffb75a66ea22dbda62631d64b3a8b699.tar.gz gsoc2013-evolution-31cab455ffb75a66ea22dbda62631d64b3a8b699.tar.zst gsoc2013-evolution-31cab455ffb75a66ea22dbda62631d64b3a8b699.zip |
Wrote a new version of header_fold() that takes a 'force' option and uses
2001-03-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-utils.c: Wrote a new version of header_fold() that
takes a 'force' option and uses another new function called
header_fold_next_space() in place of strchr(inptr, ' ') to get the
next whitespace char. The idea of header_fold_next_space() is to
not treat spaces between a set of quotes as a space - this way it
will be possible to fold (for example) the Content-Type MIME
header without worrying about breaking up a boundary string.
Note: This code is #if 0'd out until Zucchi approves of the patch.
Another Note: We will probably still want to use the "don't fold
this header" hash lookup for headers like the Message-Id and
possibly a few others.
svn path=/trunk/; revision=8552
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index d82802cb77..2c9ae16994 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,19 @@ 2001-03-04 Jeffrey Stedfast <fejj@ximian.com> + * camel-mime-utils.c: Wrote a new version of header_fold() that + takes a 'force' option and uses another new function called + header_fold_next_space() in place of strchr(inptr, ' ') to get the + next whitespace char. The idea of header_fold_next_space() is to + not treat spaces between a set of quotes as a space - this way it + will be possible to fold (for example) the Content-Type MIME + header without worrying about breaking up a boundary string. + Note: This code is #if 0'd out until Zucchi approves of the patch. + Another Note: We will probably still want to use the "don't fold + this header" hash lookup for headers like the Message-Id and + possibly a few others. + +2001-03-04 Jeffrey Stedfast <fejj@ximian.com> + * camel-internet-address.c (camel_internet_address_encode_address): Make sure there is a space between the name and the address tokens. |