summaryrefslogtreecommitdiffstats
path: root/mantools/makemanidx
blob: e696fd38c5236c9c684e0e76bb8374ed8c7d6f41 (plain)
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
#!/bin/sh

cat <<EOF
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<title>Postfix Manual Pages </title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

</head>

<body>

<h1><img src="postfix-logo.jpg" width="203" height="98" ALT="">Postfix
Manual Pages </h1>

<hr>

<h2> Information for new Postfix users </h2>

<p> New Postfix users should first look at the following introductory
documents.  These introductions are hyperlinked to more advanced
documents and to UNIX-style manual pages. The UNIX-style manual
pages are intended for people who are already familiar with Postfix.
</p>

<ul>

<li> <a href="OVERVIEW.html"> Postfix architecture overview </a>

<li> <a href="BASIC_CONFIGURATION_README.html"> Basic configuration
</a>

<li> <a href="DEBUG_README.html"> Trouble shooting </a>

<li> <a href="CONTENT_INSPECTION_README.html"> Content inspection
overview</a>

<li> <a href="SMTPD_ACCESS_README.html">Relay/access control overview
</a>

<li> <a href="DATABASE_README.html"> Lookup table overview </a>

</ul>

<h2> Postfix manual page organization </h2>

<p> Each Postfix manual page is numbered after a section of the
UNIX manual: examples are mailq(1) or access(5). Unfortunately,
there is no single universal method to organize manual pages; each
UNIX flavor appears to be different. Postfix documentation assumes
the following convention:  </p>

<blockquote>

<table cellpadding="0" cellspacing="0">

<tr><th> Section </th> <th> Topic </th> </tr>

<tr><td colspan="2"> <hr> </td> </tr>

<tr><td align="center"> 1 </td> <td> Commands </td> </tr>

<tr><td align="center"> 3 </td> <td> Library routines </td> </tr>

<tr><td align="center"> 5 </td> <td> File formats </td> </tr>

<tr><td align="center"> 8 </td> <td> Daemons </td> </tr>

</table>

</blockquote>

EOF

srctoman "$@" | sed 's/\\-/-/g' | awk '

NR == 1,/SH "*SEE ALSO"*/ { next }

/^Other:$/ { print ul; exit }

/^[A-Z].*:$/ { print ul "<h2>", $0, "</h2>\n\n<ul>\n\n"; ul = "</ul>\n\n" }

/^[a-z][-a-z0-9_]+\(/ { print "<li>", $0, "\n" }

' | sed 's;: </h2>$; </h2>;'

cat <<EOF
</body>

</html>
EOF