diff options
Diffstat (limited to 'mhonarc.mrc')
-rw-r--r-- | mhonarc.mrc | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/mhonarc.mrc b/mhonarc.mrc new file mode 100644 index 0000000..a592be7 --- /dev/null +++ b/mhonarc.mrc @@ -0,0 +1,131 @@ +<!-- 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> + +<!-- 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> |