1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
2007-02-25 Mr. Sam <mrsam@courier-mta.com>
* rfc822.c (parseaddr): rfc822a_alloc() would corrupt and misparse
RFC2047-encoded atoms.
2006-01-21 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (encodebase64): Fix compiler warning.
* rfc822.c (parseaddr): Ditto.
2005-11-15 Mr. Sam <mrsam@courier-mta.com>
* encode.c (quoted_printable): encode spaces that precede a newline.
2004-08-29 Mr. Sam <mrsam@courier-mta.com>
* imapsubj.c (rfc822_coresubj_keepblobs): New function to strip
non-core subject appendages, but keep [blobs].
2004-05-29 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Use base64 to MIME-encode
instead of quoted-printable, where it's more efficient to do so.
2004-04-14 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix bug introduced in 0411.
2004-04-11 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (a_rfc2047_encode_str): Improve compliance with RFC 2047
for MIME-encoded recipient lists.
(rfc2047_encode_callback): New argument: qp_allow - function that
indicates acceptable characters in QP-encoded words.
(rfc2047_encode_str): Ditto.
(rfc2047_qp_allow_any, rfc2047_qp_allow_comment)
(rfc2047_qp_allow_word): Possible arguments to qp_allow for various
situations.
2004-04-09 Mr. Sam <mrsam@courier-mta.com>
* encode.c: Moved rfc2045/rfc2045encode.c here, renamed all functions
to use the libmail_ prefix.
2003-11-18 Tim Rice <tim@multitalents.net>
* configure.in: Fix MSG_WARN.
2003-10-20 Mr. Sam <mrsam@courier-mta.com>
* rfc2047u.c (rfc2047_print_unicode): Unicode-aware version of
rfc2047_print().
2003-07-08 Mr. Sam <mrsam@courier-mta.com>
* imaprefs.c (rfc822_threadmsgrefs): New rfc822_threadmsgrefs takes
an array of References: headers, instead of a single References:
string.
2003-03-20 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix MIME encoding of "_".
2002-12-23 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix loop on broken
locales where isspace(U+0x00A0) is true.
2002-09-19 Mr. Sam <mrsam@courier-mta.com>
* RFC 2231 support.
2002-08-08 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix MIME encoding of words
with = and ? characters.
2002-05-20 Mr. Sam <mrsam@courier-mta.com>
* rfc822_parsedt.c (rfc822_parsedt): Ignore obviously invalid years
(someone else can worry about Y10K).
2002-04-07 Mr. Sam <mrsam@courier-mta.com>
* rfc822_mkdate.c (rfc822_mkdate_buf): Explicit (int) cast gets
the file compiled under Cygwin.
2002-03-09 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix MIME-encoding of spaces.
2002-03-04 Mr. Sam <mrsam@courier-mta.com>
* rfc822.c (rfc822_prname_orlist): Dequote quoted-strings.
2001-06-27 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (a_rfc2047_encode_str): Fix incorrect MIME encoding of
address name in old-style RFC-822 format.
2001-04-17 Mr. Sam <mrsam@courier-mta.com>
* rfc822.c (rfc822t_alloc): Explicitly cast arg to (void *).
2000-12-22 Mr. Sam <mrsam@courier-mta.com>
* reftest.c: Fix dependency on qsort sorting order of identical keys.
2000-12-11 Mr. Sam <mrsam@courier-mta.com>
* imapsubj.c (stripsubj): Recode subject stripping.
2000-11-18 Mr. Sam <mrsam@gwl.email-scan.com>
* imaprefs.c: Update to draft-05.txt-bis (sort top level siblings
by date.
Mon Apr 5 00:58:37 EDT 1999
* Yes, I've decided to start a Change Log. librfc822 now has a life of its
own, so it might as well have it.
* Courier needs tokens in a link list, not an array. Rewrote most token
handling code.
* Fixed some issues with handling of () comments.
* Changed *pr* functions to pass along a caller-provided void, also for
courier. librfc822 should now be threadable (like, who cares...)
* Added a testsuite
|