Mercurial > masqmail
annotate TODO @ 323:29de6a1c4538
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:47:27 +0200 (2011-06-03) |
parents | c5e964e6ddbe |
children |
rev | line source |
---|---|
197
50011f65bd35
added comment: TODO file may not be up-to-date
meillo@marmaro.de
parents:
192
diff
changeset
|
1 Todo list for masqmail |
50011f65bd35
added comment: TODO file may not be up-to-date
meillo@marmaro.de
parents:
192
diff
changeset
|
2 ---------------------- |
50011f65bd35
added comment: TODO file may not be up-to-date
meillo@marmaro.de
parents:
192
diff
changeset
|
3 (Note: This file may not be up-to-date.) |
50011f65bd35
added comment: TODO file may not be up-to-date
meillo@marmaro.de
parents:
192
diff
changeset
|
4 |
0 | 5 general: |
6 - look carefully were memory is not freed | |
7 - add forwarding support | |
8 - improve Mailer-Daemon error messages | |
9 - ODMR support | |
10 - temporary delivery delay notifications | |
122 | 11 - check data types (int may only cover -32767 to +32767!) |
0 | 12 |
13 conf: | |
198 | 14 - less configuration options |
0 | 15 - make conf more fool proof |
16 | |
17 lookup: | |
18 - optimize MX lookup | |
19 | |
20 ...update this file from time to time... | |
21 | |
22 ...and (you guessed it): | |
23 - bug fixing |