masqmail-0.2

annotate TODO @ 179:ec3fe72a3e99

Fixed an important bug with folded headers! g_strconcat() returns a *copy* of the string, but hdr->value still pointed to the old header (which probably was a memory leak, too). If the folded part had been quite small it was likely that the new string was at the same position as the old one, thus making everything go well. But if pretty long headers were folded several times it was likely that the new string was allocated somewhere else in memory, thus breaking things. In result mails to lots of recipients (folded header) were frequently only sent to the ones in the first line. Sorry for the inconvenience.
author meillo@marmaro.de
date Fri, 03 Jun 2011 09:52:17 +0200
parents 08114f7dcc23
children
rev   line source
meillo@0 1 general:
meillo@0 2 - look carefully were memory is not freed
meillo@0 3 - add forwarding support
meillo@0 4 - improve Mailer-Daemon error messages
meillo@0 5 - ODMR support
meillo@0 6 - temporary delivery delay notifications
meillo@122 7 - check data types (int may only cover -32767 to +32767!)
meillo@0 8
meillo@0 9 conf:
meillo@0 10 - more configuration options
meillo@0 11 - make conf more fool proof
meillo@0 12
meillo@0 13 pop:
meillo@0 14 - multidrop support
meillo@0 15
meillo@0 16 lookup:
meillo@0 17 - optimize MX lookup
meillo@0 18
meillo@0 19 ...update this file from time to time...
meillo@0 20
meillo@0 21 ...and (you guessed it):
meillo@0 22 - bug fixing