Mercurial > masqmail
annotate devel/are-options-documented @ 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 |
parents | 7b70bf4f1f42 |
children | 4905a1d9e6a7 |
rev | line source |
---|---|
140
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
1 #!/bin/sh |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
2 # |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
3 # checks if all recognized options are documented |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
4 # run from masqmail's repository root dir |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
5 # |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
6 # Note: this script is far from perfect, but its development time to |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
7 # usage value ratio is quite good :-) |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
8 |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
9 docs="/tmp/masqmail-opts-docs.$$" |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
10 code="/tmp/masqmail-opts-code.$$" |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
11 |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
12 cat man/masqmail.*.5 | grep -o '^\\fB[^(\\]*\\f.' | |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
13 egrep -v 'OBSOLETE|http://' | sed 's,^\\fB,,; s,[\\ =].*,,' | |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
14 sort -u | grep -v '^val$' >"$docs" |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
15 |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
16 cat src/conf.c | grep 'lval,.*"' | |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
17 sed 's,[^"]*",,; s,"\, [0-9]*,",; s,".*,,' | sort -u >"$code" |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
18 |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
19 diff -U 0 "$code" "$docs" | grep -v '^@@' |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
20 |
867bb186a829
added a script that checks the documentation coverage of config options
meillo@marmaro.de
parents:
diff
changeset
|
21 rm -f "$docs" "$code" |