Index: NEWS
===================================================================
RCS file: /cvsroot/mailman/mailman/NEWS,v
retrieving revision 1.25.2.13
retrieving revision 1.25.2.14
diff -u -r1.25.2.13 -r1.25.2.14
--- NEWS 3 Apr 2002 22:50:10 -0000 1.25.2.13
+++ NEWS 9 Apr 2002 20:57:40 -0000 1.25.2.14
@@ -4,6 +4,14 @@
Here is a history of user visible changes to Mailman.
+2.0.10 (09-Apr-2002)
+
+ - Closed another small race condition.
+
+ - Add the RFC-2822 recommended Message-ID: header on internally
+ generated outgoing messages. Not all MTAs add this field if
+ missing (read: Qmail).
+
2.0.9 (02-Apr-2002)
- Closed a race condition which could, under rare circumstances,
Index: Mailman/Message.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Message.py,v
retrieving revision 1.40.2.2
retrieving revision 1.40.2.3
diff -u -r1.40.2.2 -r1.40.2.3
--- Mailman/Message.py 3 Apr 2002 22:40:41 -0000 1.40.2.2
+++ Mailman/Message.py 4 Apr 2002 21:14:59 -0000 1.40.2.3
@@ -196,10 +196,14 @@
# make sure that the first line does NOT contain a colon!
Message.__init__(self, StringIO(text))
# RFC 2822 requires a Date: header, and while most MTAs add one if
- # it's missing, Qmail does not.
+ # it's missing, qmail does not.
if not self.get('date'):
self['Date'] = Utils.formatdate(localtime=1)
-
+ # RFC 2822 recommends a Message-ID: header, and while most MTAs add
+ # one if it's missing, qmail does not.
+ if not self.get('message-id'):
+ self['Message-ID'] = Utils.make_msgid(idstring='Mailman')
+
class UserNotification(OutgoingMessage):
Index: Mailman/Utils.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Utils.py,v
retrieving revision 1.104.2.5
retrieving revision 1.104.2.6
diff -u -r1.104.2.5 -r1.104.2.6
--- Mailman/Utils.py 3 Apr 2002 22:47:12 -0000 1.104.2.5
+++ Mailman/Utils.py 4 Apr 2002 21:14:23 -0000 1.104.2.6
@@ -28,6 +28,8 @@
import string
import re
import time
+import socket
+import random
from UserDict import UserDict
from types import StringType
import random
@@ -737,3 +739,28 @@
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'][now[1] - 1],
now[0], now[3], now[4], now[5],
zone)
+
+
+
+def make_msgid(idstring=None):
+ """Returns a string suitable for RFC 2822 compliant Message-ID:, e.g:
+
+ <
[email protected]>
+
+ Optional idstring if given is a string used to strengthen the
+ uniqueness of the Message-ID, otherwise an empty string is used.
+ """
+ timeval = time.time()
+ utcdate = time.strftime('%Y%m%d%H%M%S', time.gmtime(timeval))
+ pid = os.getpid()
+ randint = random.randrange(100000)
+ if idstring is None:
+ idstring = ''
+ else:
+ idstring = '.' + idstring
+ try:
+ idhost = socket.getfqdn()
+ except AttributeError:
+ idhost = socket.gethostbyaddr(socket.gethostname())[0]
+ msgid = '<%s.%s.%s%s@%s>' % (utcdate, pid, randint, idstring, idhost)
+ return msgid
Index: Mailman/Version.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Version.py,v
retrieving revision 1.20.2.9
retrieving revision 1.20.2.10
diff -u -r1.20.2.9 -r1.20.2.10
--- Mailman/Version.py 2 Apr 2002 23:36:35 -0000 1.20.2.9
+++ Mailman/Version.py 9 Apr 2002 21:06:16 -0000 1.20.2.10
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Mailman version
-VERSION = "2.0.9"
+VERSION = "2.0.10"
# And as a hex number in the manner of PY_VERSION_HEX
ALPHA = 0xa
@@ -27,7 +27,7 @@
MAJOR_REV = 2
MINOR_REV = 0
-MICRO_REV = 9
+MICRO_REV = 10
REL_LEVEL = FINAL
# at most 15 beta releases!
REL_SERIAL = 0
Index: admin/www/MMGenerator.py
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/MMGenerator.py,v
retrieving revision 1.2.2.2
retrieving revision 1.2.2.3
diff -u -r1.2.2.2 -r1.2.2.3
--- admin/www/MMGenerator.py 5 Jan 2001 16:23:07 -0000 1.2.2.2
+++ admin/www/MMGenerator.py 4 Apr 2002 17:51:53 -0000 1.2.2.3
@@ -5,7 +5,9 @@
http://www.wooz.org/users/barry/software/pyware.html
"""
+import time
import os
+import re
from Skeleton import Skeleton
from Sidebar import Sidebar, BLANKCELL
@@ -13,6 +15,8 @@
from HTParser import HTParser
from LinkFixer import LinkFixer
+COMMA = ','
+
sitelinks = [
@@ -49,18 +53,26 @@
self.__d = {'rootdir': rootdir}
self.__linkfixer.massage(p.sidebar, self.__d)
# tweak
- p.sidebar.append((None,
- '''<a href="
http://www.python.org/"><img border=0
- src="%(rootdir)s/images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>'''
- % self.__d))
+ p.sidebar.append((None, """\
+<center><a href="
http://www.python.org/"><img border=0
+ src="%(rootdir)s/images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+ """ % self.__d))
p.sidebar.append(BLANKCELL)
- copyright = self.__parser.get('copyright', '1998,1999,2000,2001')
- p.sidebar.append((None, '© ' + copyright +
- '<br>Free Software Foundation, Inc.'))
+ years = COMMA.join([str(x)
+ for x in range(1998, time.localtime()[0]+1)])
+ copyright = self.__parser.get('copyright', years)
+ p.sidebar.append((None, '© ' + copyright + """\
+<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+"""))
Sidebar.__init__(self, p.sidebar)
#
# fix up our site links, no relthis because the site links are
@@ -90,7 +102,13 @@
return Banner.get_banner(self)
def get_title(self):
- return self.__parser.get('title')
+ title = self.__parser.get('title')
+ return title + ' - GNU Project - Free Software Foundation (FSF)'
+
+ def get_meta(self):
+ skel = Skeleton.get_meta(self)
+ extra = '\n<LINK REV="made" HREF="mailto:
[email protected]">'
+ return skel + extra
def get_sidebar(self):
return Sidebar.get_sidebar(self)
Index: admin/www/admins.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/admins.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/admins.html 27 Nov 2001 22:27:41 -0000 1.4.2.2
+++ admin/www/admins.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,173 +1,186 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:43 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:28 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Site Administrator Documentation
+Title: Site Administrator Documentation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Site Administrator Documentation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Site Administrator Documentation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<b>Site Administrators</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="users.html">Users</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mgrs.html">List Managers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="users.html">Users</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mgrs.html">List Managers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Site Administrators</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="devs.html">Developers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="otherdocs.html">Other Documentation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="devs.html">Developers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="otherdocs.html">Other Documentation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Site Administrator Documentation</h3>
By definition, the site administrator has shell access to the Mailman
@@ -385,7 +398,7 @@
</dl>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/bugs.ht
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/bugs.ht,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- admin/www/bugs.ht 8 Nov 2000 18:43:39 -0000 1.1
+++ admin/www/bugs.ht 4 Apr 2002 17:29:52 -0000 1.1.2.1
@@ -11,7 +11,6 @@
<a href="
http://sourceforge.net/projects/mailman">developed on SourceForge</a>.
Please use the SourceForge
<a href="
http://sourceforge.net/bugs/?group_id=103">bug tracker</a> to
-report any bugs; I've retired the old Jitterbug database on
-python.org. If you have patches you'd like to submit, the best place
+report any bugs. If you have patches you'd like to submit, the best place
to do that is on the SourceForge
<a href="
http://sourceforge.net/patch/?group_id=103">patch manager</a>.
Index: admin/www/bugs.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/bugs.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/bugs.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/bugs.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,179 +1,191 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:43 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:28 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Bugs and Patches
+Title: Bugs and Patches - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Bugs and Patches</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Bugs and Patches - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Bugs and Patches</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Exits
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://sourceforge.net/bugs/?group_id=103">Bug Tracker</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://sourceforge.net/patch/?group_id=103">Patch Manager</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://sourceforge.net/projects/mailman">Mailman Project</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://sourceforge.net/bugs/?group_id=103">Bug Tracker</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://sourceforge.net/patch/?group_id=103">Patch Manager</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://sourceforge.net/projects/mailman">Mailman Project</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Bugs and Patches</h3>
<p>Mailman is being
<a href="
http://sourceforge.net/projects/mailman">developed on SourceForge</a>.
Please use the SourceForge
<a href="
http://sourceforge.net/bugs/?group_id=103">bug tracker</a> to
-report any bugs; I've retired the old Jitterbug database on
-python.org. If you have patches you'd like to submit, the best place
+report any bugs. If you have patches you'd like to submit, the best place
to do that is on the SourceForge
<a href="
http://sourceforge.net/patch/?group_id=103">patch manager</a>.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/devs.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/devs.html,v
retrieving revision 1.5.2.2
retrieving revision 1.5.2.3
diff -u -r1.5.2.2 -r1.5.2.3
--- admin/www/devs.html 27 Nov 2001 22:27:42 -0000 1.5.2.2
+++ admin/www/devs.html 4 Apr 2002 18:07:26 -0000 1.5.2.3
@@ -1,173 +1,186 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:44 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Developer Documentation
+Title: Developer Documentation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Developer Documentation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Developer Documentation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<b>Developers</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="users.html">Users</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mgrs.html">List Managers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="admins.html">Site Administrators</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="users.html">Users</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mgrs.html">List Managers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="admins.html">Site Administrators</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Developers</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="otherdocs.html">Other Documentation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="otherdocs.html">Other Documentation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Developer Documentation</h3>
If you're the kind of person who loves to hack on the nitty gritty,
@@ -192,7 +205,7 @@
collaborative, you're free to contribute to this page in true Wiki
fashion.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/download.ht
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/download.ht,v
retrieving revision 1.5.2.10
retrieving revision 1.5.2.13
diff -u -r1.5.2.10 -r1.5.2.13
--- admin/www/download.ht 3 Apr 2002 05:11:22 -0000 1.5.2.10
+++ admin/www/download.ht 18 Apr 2002 03:49:52 -0000 1.5.2.13
@@ -3,7 +3,6 @@
<h3>SMTP servers</h3>
<li><a href="
http://www.postfix.org/">Postfix</a>
<li><a href="
http://www.exim.org/">Exim</a>
- <li><a href="
http://www.qmail.org/">Qmail</a>
<li><a href="
http://www.sendmail.org/">Sendmail</a>
<h3>Other software</h3>
<li><a href="
http://www.apache.org/">Apache web server</a>
@@ -15,7 +14,7 @@
<h3>Requirements</h3>
-<p>Mailman currently runs only on Unix-y systems, such as Linux,
+<p>Mailman currently runs only on Unix-y systems, such as GNU/Linux,
Solaris, *BSD, etc. It should work on MacOSX but not earlier versions
of MacOS. It probably does not work on Windows, although it's
possible you could get it running on a Cygwin system (please
@@ -26,7 +25,7 @@
Before you can run Mailman, you need to make sure that
<a href="
http://www.python.org/">Python</a> is installed. Mailman
requires at least Python 1.5.2 and is known to work with Python 1.6
-and Python 2.0. Most Linux systems come with Python pre-installed, so
+and Python 2.0. Most GNU/Linux systems come with Python pre-installed, so
you just need to make sure you're running an up-to-date version. You
can do this by executing the following at your shell's command line:
@@ -40,17 +39,13 @@
</pre>
</blockquote>
-<p>You will also need an SMTP server (a.k.a. mail transport agent or
-<em>MTA</em>) for mail delivery and reception.
-<a href="
http://www.sendmail.org/">Sendmail</a> is the oldest and most
-widely-used MTA, and comes pre-installed on most Unix systems, however it
-is not the recommended MTA to use with Mailman. It works, but you may
-get better results from one of the newer MTAs. Good results are
-reported on the <a href="lists.html">Mailman mailing lists</a> from
-people using <a href="
http://www.postfix.org/">Postfix</a>,
-<a href="
http://www.exim.org/">Exim</a>, and
-<a href="
http://www.qmail.org/">Qmail</a>. Most Mailman development
-is done with Postfix.
+<p>You will also need a mail server (a.k.a. SMTP server, mail
+transport agent or <em>MTA</em>) for mail delivery and reception.
+Mailman is MTA-agnostic, meaning it should work with just about any
+mail server. Among the servers used by the Mailman community include
+<a href="
http://www.postfix.org/">Postfix</a>,
+<a href="
http://www.exim.org/">Exim</a>,
+<a href="
http://www.sendmail.org/">Sendmail</a>, and Qmail.
<p>You will need a web server.
<a href="
http://www.apache.org/">Apache</a> is certainly the most
@@ -65,9 +60,9 @@
<h3>Downloading</h3>
<p>Version
-(<!-VERSION--->2.0.9<!-VERSION--->,
+(<!-VERSION--->2.0.10<!-VERSION--->,
released on
-<!-DATE--->Apr 3 2002<!-DATE--->)
+<!-DATE--->Apr 17 2002<!-DATE--->)
is the current GNU release. It is available from the following mirror sites:
<ul>
Index: admin/www/download.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/download.html,v
retrieving revision 1.6.2.12
retrieving revision 1.6.2.15
diff -u -r1.6.2.12 -r1.6.2.15
--- admin/www/download.html 3 Apr 2002 05:11:22 -0000 1.6.2.12
+++ admin/www/download.html 18 Apr 2002 03:49:52 -0000 1.6.2.15
@@ -1,203 +1,206 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Wed Apr 3 00:10:44 2002 -->
+<!-- Wed Apr 17 23:48:35 2002 -->
<!-- USING HT2HTML 2.0 -->
<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Downloading Mailman
+Title: Downloading Mailman - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Downloading Mailman</TITLE>
-<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
-
-<STYLE TYPE="text/css">
-<!--
+<head>
+<title>Downloading Mailman - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
body { margin: 0px; }
--->
-</STYLE>
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH="150" VALIGN="MIDDLE" BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH="15" BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER="0"
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH="150" VALIGN="TOP" BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="3"
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Requirements, Download</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
SMTP servers
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.postfix.org/">Postfix</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.exim.org/">Exim</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.qmail.org/">Qmail</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.sendmail.org/">Sendmail</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.postfix.org/">Postfix</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.exim.org/">Exim</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.sendmail.org/">Sendmail</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Other software
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.apache.org/">Apache web server</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.gnu.org/software/gcc/">GNU C compiler</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.apache.org/">Apache web server</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.gnu.org/software/gcc/">GNU C compiler</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Mailman downloads
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
ftp://ftp.gnu.org/gnu/mailman/">From GNU</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.list.org/mailman.tar.gz">From List.Org</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://sourceforge.net/project/showfiles.php?group_id=103">From SourceForge</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
ftp://ftp.gnu.org/gnu/mailman/">From GNU</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.list.org/mailman.tar.gz">From List.Org</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://sourceforge.net/project/showfiles.php?group_id=103">From SourceForge</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH="15"> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN="TOP" WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Requirements</h3>
-<p>Mailman currently runs only on Unix-y systems, such as Linux,
+<p>Mailman currently runs only on Unix-y systems, such as GNU/Linux,
Solaris, *BSD, etc. It should work on MacOSX but not earlier versions
of MacOS. It probably does not work on Windows, although it's
possible you could get it running on a Cygwin system (please
@@ -208,7 +211,7 @@
Before you can run Mailman, you need to make sure that
<a href="
http://www.python.org/">Python</a> is installed. Mailman
requires at least Python 1.5.2 and is known to work with Python 1.6
-and Python 2.0. Most Linux systems come with Python pre-installed, so
+and Python 2.0. Most GNU/Linux systems come with Python pre-installed, so
you just need to make sure you're running an up-to-date version. You
can do this by executing the following at your shell's command line:
@@ -222,17 +225,13 @@
</pre>
</blockquote>
-<p>You will also need an SMTP server (a.k.a. mail transport agent or
-<em>MTA</em>) for mail delivery and reception.
-<a href="
http://www.sendmail.org/">Sendmail</a> is the oldest and most
-widely-used MTA, and comes pre-installed on most Unix systems, however it
-is not the recommended MTA to use with Mailman. It works, but you may
-get better results from one of the newer MTAs. Good results are
-reported on the <a href="lists.html">Mailman mailing lists</a> from
-people using <a href="
http://www.postfix.org/">Postfix</a>,
-<a href="
http://www.exim.org/">Exim</a>, and
-<a href="
http://www.qmail.org/">Qmail</a>. Most Mailman development
-is done with Postfix.
+<p>You will also need a mail server (a.k.a. SMTP server, mail
+transport agent or <em>MTA</em>) for mail delivery and reception.
+Mailman is MTA-agnostic, meaning it should work with just about any
+mail server. Among the servers used by the Mailman community include
+<a href="
http://www.postfix.org/">Postfix</a>,
+<a href="
http://www.exim.org/">Exim</a>,
+<a href="
http://www.sendmail.org/">Sendmail</a>, and Qmail.
<p>You will need a web server.
<a href="
http://www.apache.org/">Apache</a> is certainly the most
@@ -247,9 +246,9 @@
<h3>Downloading</h3>
<p>Version
-(<!-VERSION--->2.0.9<!-VERSION--->,
+(<!-VERSION--->2.0.10<!-VERSION--->,
released on
-<!-DATE--->Apr 3 2002<!-DATE--->)
+<!-DATE--->Apr 17 2002<!-DATE--->)
is the current GNU release. It is available from the following mirror sites:
<ul>
@@ -281,7 +280,7 @@
</pre>
</blockquote>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/faq.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/faq.html,v
retrieving revision 1.10.2.3
retrieving revision 1.10.2.4
diff -u -r1.10.2.3 -r1.10.2.4
--- admin/www/faq.html 27 Nov 2001 22:27:42 -0000 1.10.2.3
+++ admin/www/faq.html 4 Apr 2002 18:07:26 -0000 1.10.2.4
@@ -1,154 +1,167 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:32 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Mailman Frequently Asked Questions
+Title: Mailman Frequently Asked Questions - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Mailman Frequently Asked Questions</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Mailman Frequently Asked Questions - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<b>FAQ</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Frequently Asked Questions</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Mailman Frequently Asked Questions</h3>
<b> Q. How do you spell this program?
@@ -331,7 +344,7 @@
considered the price to pay for the convenience of not having to
type the password in every time.
<p>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/features.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/features.html,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -u -r1.9.2.2 -r1.9.2.3
--- admin/www/features.html 27 Nov 2001 22:27:42 -0000 1.9.2.2
+++ admin/www/features.html 4 Apr 2002 18:07:26 -0000 1.9.2.3
@@ -1,161 +1,174 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:44 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Mailman Features
+Title: Mailman Features - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Mailman Features</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Mailman Features - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Features</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Exits
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.oac.uci.edu/indiv/ehood/mhonarc.html">MHonArc</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.oac.uci.edu/indiv/ehood/mhonarc.html">MHonArc</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Mailman Features</h3>
<ul>
@@ -204,7 +217,7 @@
<li>An extensible mail delivery pipeline.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/index.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/index.html,v
retrieving revision 1.64.2.2
retrieving revision 1.64.2.3
diff -u -r1.64.2.2 -r1.64.2.3
--- admin/www/index.html 27 Nov 2001 22:27:42 -0000 1.64.2.2
+++ admin/www/index.html 4 Apr 2002 18:07:26 -0000 1.64.2.3
@@ -1,192 +1,205 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:44 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Mailman, the GNU Mailing List Manager
+Title: Mailman, the GNU Mailing List Manager - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Mailman, the GNU Mailing List Manager</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Mailman, the GNU Mailing List Manager - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<b>Home</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Home</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="users.html">Users</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mgrs.html">List Managers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="admins.html">Site Administrators</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="devs.html">Developers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="otherdocs.html">Other Documentation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="users.html">Users</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mgrs.html">List Managers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="admins.html">Site Administrators</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="devs.html">Developers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="otherdocs.html">Other Documentation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Exits
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.python.org/">Python</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.gnu.org/">GNU/FSF</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.list.org/">List.Org mirror</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="
http://www.wooz.org/barry/">Barry Warsaw</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.python.org/">Python</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.gnu.org/">GNU/FSF</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.list.org/">List.Org mirror</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="
http://www.wooz.org/barry/">Barry Warsaw</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Mailman, the GNU Mailing List Manager</h3>
@@ -256,7 +269,7 @@
</tr>
</table>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-check.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-check.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-check.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-check.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:44 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Check your installation
+Title: Check your installation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Check your installation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Check your installation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Check your installation</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Check your installation</h3>
To check that your installation has all the correct permissions
@@ -212,7 +225,7 @@
<li>Repeat previous step until no more errors are reported!
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-config.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-config.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-config.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-config.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:45 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Running configure
+Title: Running configure - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Running configure</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Running configure - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Running configure</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Running configure</h3>
<em>TAKE SPECIAL NOTE OF THE <code>--with-mail-gid</code> AND
@@ -306,7 +319,7 @@
your <code>$PATH</code>
</dl>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-custom.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-custom.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-custom.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-custom.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:45 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:29 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Customize Mailman
+Title: Customize Mailman - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Customize Mailman</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Customize Mailman - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Customize Mailman</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Customize Mailman</h3>
You should do these steps using the account you installed Mailman
@@ -221,7 +234,7 @@
when necessary.
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-faq.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-faq.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-faq.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-faq.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:45 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Common problems FAQ
+Title: Common problems FAQ - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Common problems FAQ</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Common problems FAQ - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Common problems FAQ</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Common Problems FAQ</h3>
<b>Problem:</b> All Mailman web pages give a <em>404 File not
@@ -310,7 +323,7 @@
</pre>
</blockquote>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-final.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-final.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-final.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-final.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:45 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Final system setup
+Title: Final system setup - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Final system setup</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Final system setup - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Final system setup</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Final system set-up</h3>
Congratulations! You've installed the Mailman software. To get
@@ -314,7 +327,7 @@
aliases.
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-start.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-start.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-start.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-start.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:46 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Start installing Mailman
+Title: Start installing Mailman - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Start installing Mailman</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Start installing Mailman - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<b>Installation</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Installation</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<b>Start installing</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Start installing Mailman</h3>
These are the on-line instructions for installing Mailman from source.
@@ -200,7 +213,7 @@
the notes in the file UPGRADING for important information before you
upgrade.</em>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-system.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-system.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-system.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-system.html 4 Apr 2002 18:07:26 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:46 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: System setup
+Title: System setup - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>System setup</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>System setup - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>System setup</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>System setup</h3>
<p><em>You will need to be <b>root</b> to perform the steps in this
@@ -237,7 +250,7 @@
You are now ready to configure and install the Mailman software.
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-test.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-test.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-test.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-test.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:46 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Create a test list
+Title: Create a test list - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Create a test list</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Create a test list - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Create a test list</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-trouble.html">Troubleshooting</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-trouble.html">Troubleshooting</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Create a test list</h3>
Create a list named <em>test</em>. To do so, run the program
@@ -201,7 +214,7 @@
send a message to the list, and see if you get it. If so, then you
have successfully installed Mailman, and set up your first list!
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/install-trouble.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/install-trouble.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/install-trouble.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/install-trouble.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,185 +1,198 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:46 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:30 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Troubleshooting
+Title: Troubleshooting - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Troubleshooting</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Troubleshooting - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Installing Mailman
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Start installing</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-system.html">System setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-config.html">Running configure</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-check.html">Check your installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-final.html">Final system setup</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-custom.html">Customize Mailman</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-test.html">Create a test list</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Start installing</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-system.html">System setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-config.html">Running configure</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-check.html">Check your installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-final.html">Final system setup</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-custom.html">Customize Mailman</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-test.html">Create a test list</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Troubleshooting</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-faq.html">Common problems FAQ</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-faq.html">Common problems FAQ</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Troubleshooting</h3>
If you encounter problems with running Mailman, first check the
@@ -200,7 +213,7 @@
syslog. Also include information on your operating system and
version of Python.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/inthenews.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/inthenews.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/inthenews.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/inthenews.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,154 +1,167 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:31 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Mailman in Use and in the News
+Title: Mailman in Use and in the News - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Mailman in Use and in the News</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Mailman in Use and in the News - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Mailman in Use</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Mailman in Use and in the News</h3>
Mailman was featured in a
@@ -281,7 +294,7 @@
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/lists.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/lists.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/lists.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/lists.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,154 +1,167 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:31 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Mailman mailing lists
+Title: Mailman mailing lists - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Mailman mailing lists</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Mailman mailing lists - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<b>Discussion Lists</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Discussion Lists</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Mailman mailing lists</h3>
We have several mailing lists devoted to Mailman, which also provide a
@@ -198,7 +211,7 @@
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/mailman.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/mailman.html,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -u -r1.3 -r1.3.2.1
--- admin/www/mailman.html 21 Mar 2000 06:26:13 -0000 1.3
+++ admin/www/mailman.html 4 Apr 2002 19:11:21 -0000 1.3.2.1
@@ -54,9 +54,9 @@
Python is a free object-oriented scripting language. A few files are
written in C for security purposes.
-<p>The manual is still only a set of READMEs provided in the Mailman
-distribution. For now, more information can be found at
-<a href="
http://www.list.org/">www.list.org</a>.
+<p>More information about Mailman can be found at
+<a href="
http://www.gnu.org/software/mailman/index.html">The GNU
+Mailman home pages</a>.
<P>
<HR>
@@ -139,7 +139,7 @@
permitted in any medium, provided this notice is preserved.<P>
Updated:
<!-- hhmts start -->
-Last modified: Sun Mar 19 22:31:49 EST 2000
+Last modified: Thu Apr 4 14:10:22 EST 2002
<!-- hhmts end -->
<HR>
</BODY>
Index: admin/www/mgrs.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/mgrs.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/mgrs.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/mgrs.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,180 +1,193 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:31 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: List Manager Documentation
+Title: List Manager Documentation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>List Manager Documentation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>List Manager Documentation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<b>List Managers</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="users.html">Users</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="users.html">Users</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>List Managers</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="admins.html">Site Administrators</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="devs.html">Developers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="otherdocs.html">Other Documentation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="admins.html">Site Administrators</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="devs.html">Developers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="otherdocs.html">Other Documentation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>List Manager Documentation</h3>
<p><a href="
http://www.aurora.edu/~ckolar">Chris Kolar</a> has made
available <a href="
http://www.aurora.edu/~ckolar/mailman/">list
manager documentation</a> for Mailman.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/otherdocs.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/otherdocs.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/otherdocs.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/otherdocs.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,173 +1,186 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:31 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: Other Documentation
+Title: Other Documentation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>Other Documentation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>Other Documentation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="users.html">Users</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mgrs.html">List Managers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="admins.html">Site Administrators</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="devs.html">Developers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="users.html">Users</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mgrs.html">List Managers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="admins.html">Site Administrators</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="devs.html">Developers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Other Documentation</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>Other Documentation</h3>
<p>The <a href="faq.html">Frequently Asked Questions (FAQ)</a> is
@@ -189,7 +202,7 @@
contains many README files for discussion of issues specific to
operating system, mail transport agent, or web server.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/todo.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/todo.html,v
retrieving revision 1.21.2.2
retrieving revision 1.21.2.3
diff -u -r1.21.2.2 -r1.21.2.3
--- admin/www/todo.html 27 Nov 2001 22:27:42 -0000 1.21.2.2
+++ admin/www/todo.html 4 Apr 2002 18:07:27 -0000 1.21.2.3
@@ -1,154 +1,167 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:48 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:32 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: The Mailman Wishlist
+Title: The Mailman Wishlist - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>The Mailman Wishlist</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>The Mailman Wishlist - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./users.html">Users</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
<b>Wishlist!</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3> The Mailman Wishlist
</h3>
You should consider this list of items a good basis for the requirements for Mailman 3.0. It essentially contains a dream list of all the things that are too painful or destabilizing for the 2.x series. <p>
@@ -290,7 +303,7 @@
<li> Unit and system test suite!
</ul>
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: admin/www/users.html
===================================================================
RCS file: /cvsroot/mailman/mailman/admin/www/users.html,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -r1.4.2.2 -r1.4.2.3
--- admin/www/users.html 27 Nov 2001 22:27:42 -0000 1.4.2.2
+++ admin/www/users.html 4 Apr 2002 18:07:27 -0000 1.4.2.3
@@ -1,180 +1,193 @@
-<HTML>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
-<!-- Tue Nov 27 17:26:47 2001 -->
-<!-- USING HT2HTML 1.2 -->
-<!-- SEE
http://barry.wooz.org/software/ht2html -->
+<!-- Thu Apr 4 12:57:31 2002 -->
+<!-- USING HT2HTML 2.0 -->
+<!-- SEE
http://ht2html.sf.net -->
<!-- User-specified headers:
-Title: User Documentation
+Title: User Documentation - GNU Project - Free Software Foundation (FSF)
-->
-<HEAD>
-<TITLE>User Documentation</TITLE>
-
-</HEAD>
-<BODY BGCOLOR="#ffffff" TEXT="#000000"
- TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
- LINK="#0000bb" VLINK="#551a8b"
- ALINK="#ff0000">
+<head>
+<title>User Documentation - GNU Project - Free Software Foundation (FSF)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+<meta name="generator" content="HT2HTML/2.0">
+<LINK REV="made" HREF="mailto:
[email protected]">
+<style type="text/css">
+body { margin: 0px; }
+</style>
+</head>
+<body bgcolor="#ffffff" text="#000000"
+ marginwidth="0" marginheight="0"
+ link="#0000bb" vlink="#551a8b"
+ alink="#ff0000">
<!-- start of page table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- start of banner row -->
-<TR>
+<tr>
<!-- start of corner cells -->
-<TD WIDTH=150 VALIGN=CENTER BGCOLOR="black">
+<td width="150" valign="middle" bgcolor="black" class="corner">
<center>
<a href="./index.html">
- <img border=0 src="./images/logo-70.jpg"></a></center> </TD>
-<TD WIDTH=15 BGCOLOR="#99997c"> </TD><!--spacer-->
+ <img border=0 src="./images/logo-70.jpg"></a></center> </td>
+<td width="15" bgcolor="#99997c"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
-<TD WIDTH="90%" BGCOLOR="#99997c">
+<td width="90%" bgcolor="#99997c" class="banner">
<!-- start of site links table -->
-<TABLE WIDTH="100%" BORDER=0
+<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
- COLS=3 ROWS=4 BGCOLOR="#ffffff">
-<TR>
- <TD BGCOLOR="#99997c">
+ bgcolor="#ffffff">
+<tr>
+ <td bgcolor="#99997c">
<a href="./index.html">Home</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<b>Users</b>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.list.org/">List.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./install-start.html">Installation</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./mgrs.html">List Managers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/software/mailman/mailman.html">Mailman at GNU</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./faq.html">FAQ</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./admins.html">Site Administrators</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.python.org/">Python.Org</a>
- </TD>
-</TR><TR>
- <TD BGCOLOR="#99997c">
+ </td>
+</tr><tr>
+ <td bgcolor="#99997c">
<a href="./lists.html">Discussion Lists</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="./devs.html">Developers</a>
- </TD>
- <TD BGCOLOR="#99997c">
+ </td>
+ <td bgcolor="#99997c">
<a href="
http://www.gnu.org/">Gnu.Org</a>
- </TD>
-</TR>
-</TABLE><!-- end of site links table -->
-
-</TD><!-- end of banner -->
-</TR><!-- end of banner row -->
-<TR><!-- start of sidebar/body row -->
+ </td>
+</tr>
+</table><!-- end of site links table -->
+
+</td><!-- end of banner -->
+</tr><!-- end of banner row -->
+<tr><!-- start of sidebar/body row -->
<!-- start of sidebar cells -->
-<TD WIDTH=150 VALIGN=TOP BGCOLOR="#99997c">
+<td width="150" valign="top" bgcolor="#99997c" class="sidebar">
<!-- start of sidebar table -->
-<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=3
- BGCOLOR="#ffffff">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+<table width="100%" border="0" cellspacing="0" cellpadding="3"
+ bgcolor="#ffffff">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Overview
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<a href="MM21/index.html"><b>Mailman 2.1 info</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="index.html">Home</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="features.html">Features</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="download.html">Requirements, Download</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="install-start.html">Installation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="lists.html">Discussion Lists</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="bugs.html">Bugs and Patches</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="faq.html">Frequently Asked Questions</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="inthenews.html">Mailman in Use</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="todo.html">Wishlist!</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="index.html">Home</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="features.html">Features</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="download.html">Requirements, Download</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="install-start.html">Installation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="lists.html">Discussion Lists</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="bugs.html">Bugs and Patches</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="faq.html">Frequently Asked Questions</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="inthenews.html">Mailman in Use</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="todo.html">Wishlist!</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Documentation
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
<b>Users</b>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mgrs.html">List Managers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="admins.html">Site Administrators</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="devs.html">Developers</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="otherdocs.html">Other Documentation</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<TR><TD BGCOLOR="#663300"><B><FONT COLOR="#ffffff">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mgrs.html">List Managers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="admins.html">Site Administrators</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="devs.html">Developers</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<a href="otherdocs.html">Other Documentation</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
+<tr><td bgcolor="#663300"><b><font color="#ffffff">
Email Us
-</FONT></B></TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<A HREF="mailto:
[email protected]">
[email protected]</A>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</font></b></td></tr>
+<tr><td bgcolor="#99997c">
+<a href="mailto:
[email protected]">
[email protected]</a>
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-<a href="
http://www.python.org/"><img border=0
- src="./images/PythonPoweredSmall.png"
- ></a> <a href="
http://sourceforge.net"><img
- src="
http://sourceforge.net/sflogo.php?group_id=103"
- width="88" height="31" border="0"
- alt="SourceForge Logo"></a>
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
+</td></tr>
+<tr><td bgcolor="#99997c">
+<center><a href="
http://www.python.org/"><img border=0
+ src="./images/PythonPoweredSmall.png"></a> <a
+ href="
http://sourceforge.net"><img
+ src="
http://sourceforge.net/sflogo.php?group_id=103"
+ width="88" height="31" border="0"
+ alt="SourceForge Logo"></a>
+
+</td></tr>
+<tr><td bgcolor="#99997c">
-</TD></TR>
-<TR><TD BGCOLOR="#99997c">
-© 1998,1999,2000,2001<br>Free Software Foundation, Inc.
-</TD></TR>
-</TABLE><!-- end of sidebar table -->
+</td></tr>
+<tr><td bgcolor="#99997c">
+© 1998,1999,2000,2001,2002<br>Free Software Foundation, Inc.<br>
+Verbatim copying and distribution of this entire article is permitted in
+any medium, provided this notice is preserved.<br>
+Please send comments on these pages to <a href="mailto:
[email protected]">
+<
[email protected]></a>, other questions to <a
+href="mailto:
[email protected]"><
[email protected]></a>.
+
+</td></tr>
+</table><!-- end of sidebar table -->
-</TD>
-<TD WIDTH=15> </TD><!--spacer-->
+</td>
+<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
-<TD VALIGN=TOP WIDTH="90%"><BR>
+<td valign="top" width="90%" class="body"><br>
<h3>User Documentation</h3>
<p><a href="
http://www.aurora.edu/~ckolar">Chris Kolar</a> has made
available a <a href="
http://www.aurora.edu/~ckolar/mailman/">Mailman
user guide</a> for end-users interacting with a Mailman system.
-</TD><!-- end of body cell -->
-</TR><!-- end of sidebar/body row -->
-</TABLE><!-- end of page table -->
-</BODY></HTML>
+</td><!-- end of body cell -->
+</tr><!-- end of sidebar/body row -->
+</table><!-- end of page table -->
+</body></html>
Index: cron/qrunner
===================================================================
RCS file: /cvsroot/mailman/mailman/cron/Attic/qrunner,v
retrieving revision 1.18.2.4
retrieving revision 1.18.2.5
diff -u -r1.18.2.4 -r1.18.2.5
--- cron/qrunner 2 Apr 2002 22:38:50 -0000 1.18.2.4
+++ cron/qrunner 9 Apr 2002 20:54:18 -0000 1.18.2.5
@@ -194,10 +194,11 @@
# Keep the qrunner lock alive for a while longer
lock.refresh()
root, ext = os.path.splitext(os.path.join(mm_cfg.QUEUE_DIR, file))
- if ext == '.db':
+ if ext == '.db' or ext == '.tmp':
# Just trigger off the .msg files. This may leave stale .db files
# in qfiles, but these can't be cleaned up without storing a
- # timestamp and watching out for race conditions.
+ # timestamp and watching out for race conditions. .tmp files are
+ # created by Message.Enqueue() and are fleeting.
continue
if not os.path.exists(root+'.db'):
syslog('qrunner', 'Unlinking orphaned .msg file: %s.msg' % root)
Index: src/Makefile.in
===================================================================
RCS file: /cvsroot/mailman/mailman/src/Makefile.in,v
retrieving revision 1.18
retrieving revision 1.18.2.1
diff -u -r1.18 -r1.18.2.1
--- src/Makefile.in 6 Aug 2000 05:03:00 -0000 1.18
+++ src/Makefile.in 4 Apr 2002 22:34:53 -0000 1.18.2.1
@@ -73,7 +73,7 @@
# Fixed definitions
-CGI_PROGS= admin admindb archives edithtml options \
+CGI_PROGS= admin admindb edithtml options \
listinfo subscribe roster handle_opts private
COMMONOBJS= common.o vsnprintf.o