blob: f35258749a58bd53d4404b3ecde5d933b0be7fa7 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
<!-- MHonArc Resource File -->
<!-- 28 Jun 2000 Joe Gray - /home/mailman/mhonarc.mrc -->
<!-- Set the main archive HTML page name. -->
<IDXFNAME>
index.html
</IDXFNAME>
<!-- Don't save resources in database since we invoke with resource file. -->
<NOSAVERESOURCES>
<!-- Break index into multiple pages with 20 messages per page. -->
<MULTIPG>
<IDXSIZE>
20
</IDXSIZE>
<!-- obscure email-addresses -->
<SPAMMODE>
<!-- add RSS link-->
<IdxPgBegin>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>$IDXTITLE$</title>
<link rel="alternate" type="application/rss+xml" title="Spam RSS Feed" href="spam.rss" />
</head>
<body>
<a href="spam.rss" title="RSS feed">RSS Feed</a>
<h1>$IDXTITLE$</h1>
</IdxPgBegin>
<!-- add RSS link-->
<TIdxPgBegin>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>$TIDXTITLE$</title>
<link rel="alternate" type="application/rss+xml" title="Spam RSS Feed" href="spam.rss" />
</head>
<body>
<a href="spam.rss" title="RSS feed">RSS Feed</a>
<h1>$TIDXTITLE$</h1>
</TIdxPgBegin>
<!-- Since MULTIPG is on, add more navigation links to Main index page. -->
<ListBegin>
<ul>
<li><a href="$TIDXFNAME$">Thread Index</a></li>
</ul>
<table width="100%" border=0 cols=2 cellpadding=0 cellspacing=0>
<tbody>
<tr align="center">
<th colspan=4>Page $PAGENUM$ of $NUMOFPAGES$
<tr>
<td align="left">$PGLINK(PREV)$
<td align="right">[<a href="$PG(FIRST)$">First Page</a>]
<td align="left">[<a href="$PG(LAST)$">Last Page</a>]
<td align="right">$PGLINK(NEXT)$
</tbody>
</table>
<hr>
<ul>
</ListBegin>
<!-- Since MULTIPG is on, add more navigation links to Threaded index page. -->
<THead>
<ul>
<li><a href="$IDXFNAME$">Date Index</a></li>
</ul>
<table width="100%" border=0 cols=2 cellpadding=0 cellspacing=0>
<tbody>
<tr align="center">
<th colspan=4>Page $PAGENUM$ of $NUMOFPAGES$
<tr>
<td align="left">$PGLINK(TPREV)$
<td align="right">[<a href="$PG(TFIRST)$">First Page</a>]
<td align="left">[<a href="$PG(TLAST)$">Last Page</a>]
<td align="right">$PGLINK(TNEXT)$
</tbody>
</table>
<hr>
<ul>
</THead>
<!-- Specify date sorting. -->
<Sort>
<!-- Set mod time of the HTML message to the time the message was sent. -->
<MODTIME>
<!-- Show only these fields in the message header. -->
<FieldOrder>
to
from
date
reply-to
</FieldOrder>
<!-- Change main index title to reflect date sorting. -->
<TITLE>
Mailing List Archive (by Date)
</TITLE>
<!-- Change threaded index title to reflect threading. -->
<TTITLE>
Mailing List Archive (Threaded)
</TTITLE>
<!-- Change format of Date Index listing. -->
<LiTemplate>
<li><strong>$SUBJECT$</strong> -
<em> $YYYYMMDD$ - $FROMNAME$</em>
</li>
</LiTemplate>
<!-- Change format of Thread Index listing. -->
<TLiTxt>
<li><strong>$SUBJECT$</strong> -
<em> $FROMNAME$</em>
</TLiTxt>
<!-- Force plain text messages to wordwrap. -->
<MIMEargs>
text/plain;maxwidth=80
</MIMEargs>
<MHPATTERN>
^[^\.]
</MHPATTERN>
|