annotate devel/are-options-documented @ 276:1abc1faeb45d
for -t cmdline args are now added to the rcpt list instead of substracted
Please read the diff and the section about -t in man/masqmail.8.
Masqmail's behavior had been like the one of exim/smail, now it's
similar to postfix.
Masqmail does it now the most simple way, regarding the code.
Also, addr args are always recipients, -t does not change their meaning.
-t makes the addrs from rcpt hdrs, rcpt addrs too.
It would have been logical too, to ignore the cmdline args,
in the sense of ``headers *instead of* args'' but none of the
popular MTAs does it that way and it would have been a bit more
complicated in the code.
Anyway, this is a corner-case that should better be avoided completely.
author |
markus schnalke <meillo@marmaro.de> |
date |
Fri, 03 Dec 2010 21:05:34 -0300 |
parents |
867bb186a829 |
children |
4905a1d9e6a7 |
rev |
line source |
meillo@140
|
1 #!/bin/sh
|
meillo@140
|
2 #
|
meillo@140
|
3 # checks if all recognized options are documented
|
meillo@140
|
4 # run from masqmail's repository root dir
|
meillo@140
|
5 #
|
meillo@140
|
6 # Note: this script is far from perfect, but its development time to
|
meillo@140
|
7 # usage value ratio is quite good :-)
|
meillo@140
|
8
|
meillo@140
|
9 docs="/tmp/masqmail-opts-docs.$$"
|
meillo@140
|
10 code="/tmp/masqmail-opts-code.$$"
|
meillo@140
|
11
|
meillo@140
|
12 cat man/masqmail.*.5 | grep -o '^\\fB[^(\\]*\\f.' |
|
meillo@140
|
13 egrep -v 'OBSOLETE|http://' | sed 's,^\\fB,,; s,[\\ =].*,,' |
|
meillo@140
|
14 sort -u | grep -v '^val$' >"$docs"
|
meillo@140
|
15
|
meillo@140
|
16 cat src/conf.c | grep 'lval,.*"' |
|
meillo@140
|
17 sed 's,[^"]*",,; s,"\, [0-9]*,",; s,".*,,' | sort -u >"$code"
|
meillo@140
|
18
|
meillo@140
|
19 diff -U 0 "$code" "$docs" | grep -v '^@@'
|
meillo@140
|
20
|
meillo@140
|
21 rm -f "$docs" "$code"
|