# HG changeset patch # User Mark Doliner # Date 1070988985 0 # Node ID ea8a104c053d9981bb7c2e54091127bfcec024cc # Parent 8e60ddc28a22670763c8f24240963c0dabc2406a [gaim-migrate @ 8473] I think this probably would have helped me before I read the RFC committer: Tailor Script diff -r 8e60ddc28a22 -r ea8a104c053d src/util.h --- a/src/util.h Tue Dec 09 16:12:24 2003 +0000 +++ b/src/util.h Tue Dec 09 16:56:25 2003 +0000 @@ -119,7 +119,14 @@ /** * Converts a MIME header field string back to its readable equivalent - * according to RFC 2047. + * according to RFC 2047. Basically, a header is plain ASCII and can + * contain any number of sections called "encoded-words." The format + * of an encoded word is =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= + * =? designates the beginning of the encoded-word + * ?= designates the end of the encoded-word + * ? segments the encoded word into three pieces. The first piece is + * the character set, the second peice is the encoding, and the + * third piece is the encoded text. * * @param str The string to convert back. *