diff options
Diffstat (limited to '')
96 files changed, 354 insertions, 314 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index d4843330..9ac4c9da 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Mailman version -VERSION = "2.1.6rc4+" +VERSION = "2.1.6" # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -28,9 +28,9 @@ FINAL = 0xf MAJOR_REV = 2 MINOR_REV = 1 MICRO_REV = 6 -REL_LEVEL = GAMMA +REL_LEVEL = FINAL # at most 15 beta releases! -REL_SERIAL = 4 +REL_SERIAL = 0 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) @@ -4,21 +4,36 @@ Copyright (C) 1998-2005 by the Free Software Foundation, Inc. Here is a history of user visible changes to Mailman. -2.1.6 (XX-May-2005) +2.1.6 (30-May-2005) - - Mail-to-news gateway now strips subject prefix off from a response - by a mail user if news_prefix_subject_too is not set. + Security - Critical security patch for path traversal vulnerability in private archive script (CAN-2005-0202). - - Date and Message-Id headers are added for digests. (1116952) + - Added the ability for Mailman generated passwords (both member and list + admin) to be more cryptographically secure. See new configuration + variables USER_FRIENDLY_PASSWORDS, MEMBER_PASSWORD_LENGTH, and + ADMIN_PASSWORD_LENGTH. Also added a new bin/withlist script called + reset_pw.py which can be used to reset all member passwords. Passwords + generated by Mailman are now 8 characters by default for members, and 10 + characters for list administrators. - - List owners can now cusomize the non-member rejection notice from - admin/<listname>/privacy/sender page. (1107169) + - A potential cross-site scripting hole in the driver script has been + closed. Thanks to Florian Weimer for its discovery. Also, turn + STEALTH_MODE on by default. - - Most of the installation instructions have been moved to a latex - document. See admin/www/mailman-install/index.html for details. + Internationalization + + - Chinese languages are now supported. They have been moved from 'big5' + and 'gb' to 'zh_TW' and 'zh_CN' respectively for compliance to the IANA + spec. Note, however, that the character sets were changed from 'Big5' + or 'GB2312' to 'UTF-8' to cope with the insufficient codecs support in + Python 2.3 and earlier. You may have to install Chinese capable codecs + (like CJKCodecs) separately to handle the incoming messages which are in + local charsets, or upgrade your Python to 2.4 or newer. + + Behavior or defaults changes - VERP_PROBES is disabled by default. @@ -32,31 +47,13 @@ Here is a history of user visible changes to Mailman. than the old 'mylist@hostname' syntax (which is still supported for backward compatibility, but deprecated). - - Added the ability for Mailman generated passwords (both member and list - admin) to be more cryptographically secure. See new configuration - variables USER_FRIENDLY_PASSWORDS, MEMBER_PASSWORD_LENGTH, and - ADMIN_PASSWORD_LENGTH. Also added a new bin/withlist script called - reset_pw.py which can be used to reset all member passwords. Passwords - generated by Mailman are now 8 characters by default for members, and 10 - characters for list administrators. - - - Allow editing of the welcome message from the admin page (1085501). - - - A potential cross-site scripting hole in the driver script has been - closed. Thanks to Florian Weimer for its discovery. Also, turn - STEALTH_MODE on by default. - - - Chinese languages moved from 'big5' and 'gb' to 'zh_TW' and 'zh_CN' - respectively for compliance to the IANA spec. Note, however, that the - character sets were changed from 'Big5' or 'GB2312' to 'UTF-8' to cope - with the insufficient codecs support in Python 2.3 and earlier. You - may have to install Chinese capable codecs (like CJKCodecs) separately - to handle the incoming messages which are in local charsets, or upgrade - your Python to 2.4 or newer. + Compatibility - Python 2.4 compatibility issue: time.strftime() became strict about the 'day of year' range. (1078482) + New Features + - New feature: automatic discards of held messages. List owners can now set how many days to hold the messages in the moderator request queue. cron/checkdb will automatically discard old messages. See the @@ -64,10 +61,6 @@ Here is a history of user visible changes to Mailman. DEFAULT_MAX_DAYS_TO_HOLD in Defaults.py. This defaults to 0 (i.e. disabled). (790494) - - Improved mail address sanity check. (1030228) - - - SpamDetect.py now checks attachment header. (1026977) - - New feature: subject_prefix can be configured to include a sequence number which is taken from the post_id variable. Also, the prefix is always put at the start of the subject, i.e. "[list-name] Re: original @@ -76,12 +69,33 @@ Here is a history of user visible changes to Mailman. If the list owner is using numbering feature by "%d" directive, the new style, "[list-name 123] Re:", is always used. + - List owners can now cusomize the non-member rejection notice from + admin/<listname>/privacy/sender page. (1107169) + + - Allow editing of the welcome message from the admin page (1085501). + - List owners can now use Scrubber to get the attachments scrubbed (held in the web archive), if the site admin permits it in mm_cfg.py. New variables introduced are SCRUBBER_DONT_USE_ATTACHMENT_FILENAME and SCRUBBER_USE_ATTACHMENT_FILENAME_EXTENSION in Defaults.py for scrubber behavior. (904850) + Documentation + + - Most of the installation instructions have been moved to a latex + document. See admin/www/mailman-install/index.html for details. + + Bug fixes and other patches + + - Mail-to-news gateway now strips subject prefix off from a response + by a mail user if news_prefix_subject_too is not set. + + - Date and Message-Id headers are added for digests. (1116952) + + - Improved mail address sanity check. (1030228) + + - SpamDetect.py now checks attachment header. (1026977) + - Filter attachments by filename extensions. (1027882) - Bugs and patches: 955381 (older Python compatibility), 1020102/1013079/ diff --git a/admin/www/admins.html b/admin/www/admins.html index a911b82d..1c9e78d6 100644 --- a/admin/www/admins.html +++ b/admin/www/admins.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/bugs.ht b/admin/www/bugs.ht index 1ef3f6ae..38606a5d 100644 --- a/admin/www/bugs.ht +++ b/admin/www/bugs.ht @@ -23,7 +23,5 @@ your submission to the >mailman-developers</a> mailing list, but don't rely on just the email to get the attention of the Mailman developers. -<p><strong>Security related bugs</strong> should be posted to -<a href="mailto:mailman-cabal@python.org">mailman-cabal@python.org</a>. This -is a small, closed, distribution list so it's better to post security related -bugs here instead of to any of the public mailing lists. +<p>Please see the <a href="security.html">Mailman security page</a> for +instructions on reporting security related issues. diff --git a/admin/www/bugs.html b/admin/www/bugs.html index b16f9ccd..7b5e5214 100644 --- a/admin/www/bugs.html +++ b/admin/www/bugs.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -172,10 +172,8 @@ your submission to the >mailman-developers</a> mailing list, but don't rely on just the email to get the attention of the Mailman developers. -<p><strong>Security related bugs</strong> should be posted to -<a href="mailto:mailman-cabal@python.org">mailman-cabal@python.org</a>. This -is a small, closed, distribution list so it's better to post security related -bugs here instead of to any of the public mailing lists. +<p>Please see the <a href="security.html">Mailman security page</a> for +instructions on reporting security related issues. </td><!-- end of body cell --> </tr><!-- end of sidebar/body row --> diff --git a/admin/www/devs.html b/admin/www/devs.html index 6c27adca..b128a631 100644 --- a/admin/www/devs.html +++ b/admin/www/devs.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/docs.html b/admin/www/docs.html index 90b5fa55..1e570585 100644 --- a/admin/www/docs.html +++ b/admin/www/docs.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/download-links.h b/admin/www/download-links.h index 635a577c..75b71e38 100644 --- a/admin/www/download-links.h +++ b/admin/www/download-links.h @@ -1,6 +1,6 @@ <!-- -*- html -*- --> <h3>Downloading</h3> -<li><a href="download.html">Downloading</a> -<li><a href="version.html">Latest Version</a> <li><a href="requirements.html">Requirements</a> +<li><a href="download.html">Downloading</a> <li><a href="install.html">Installing</a> +<li><a href="version.html">Latest Version</a> diff --git a/admin/www/download.ht b/admin/www/download.ht index 631703d3..bdc500d6 100644 --- a/admin/www/download.ht +++ b/admin/www/download.ht @@ -3,31 +3,8 @@ Links: links.h download-links.h <h3>Requirements</h3> -You must have a mail server (MTA) that you can send messages to, and a -web server that supports the CGI/1.1 API. -<a href="http://httpd.apache.org">Apache</a> makes a fine choice -for web server, and MTAs such as -<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 -<a href="http://www.qmail.org">qmail</a> -should work just fine. - -<p>You will need an ANSI C compiler to build Mailman's security -wrappers. The -<a href="http://gcc.gnu.org/">GNU C compiler</a> -gcc 2.8.1 or later is known to work -well. - -<p>You must have the -<a href="http://www.python.org/">Python</a> -interpreter installed somewhere on your system. Currently Python 2.1 -or newer is required, with Python 2.3.3 being recommended. Mailman -should work with latest patch release on any Python branch from 2.1 to -2.3, which as of this writing (31-Dec-2003) is -<a href="http://www.python.org/2.1.3/">Python 2.1.3</a>, -<a href="http://www.python.org/2.2.3/">Python 2.2.3</a>, and -<a href="http://www.python.org/2.3.3/">Python 2.3.3</a>. +See the <a href="requirements.html">requirements page</a> for the list of +pre-requisites. <h3>Downloading</h3> diff --git a/admin/www/download.html b/admin/www/download.html index 8d3e7972..5cb07112 100644 --- a/admin/www/download.html +++ b/admin/www/download.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -112,16 +112,16 @@ Overview Downloading </font></b></td></tr> <tr><td bgcolor="#eecfa1"> -<b>Downloading</b> +<a href="requirements.html">Requirements</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="version.html">Latest Version</a> +<b>Downloading</b> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="requirements.html">Requirements</a> +<a href="install.html">Installing</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="install.html">Installing</a> +<a href="version.html">Latest Version</a> </td></tr> <tr><td bgcolor="#eecfa1"> </td></tr> <tr><td bgcolor="#36648b"><b><font color="#ffffff"> @@ -178,31 +178,8 @@ entire article is permitted in any medium, provided this notice is preserved. <td valign="top" width="90%" class="body"><br> <h3>Requirements</h3> -You must have a mail server (MTA) that you can send messages to, and a -web server that supports the CGI/1.1 API. -<a href="http://httpd.apache.org">Apache</a> makes a fine choice -for web server, and MTAs such as -<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 -<a href="http://www.qmail.org">qmail</a> -should work just fine. - -<p>You will need an ANSI C compiler to build Mailman's security -wrappers. The -<a href="http://gcc.gnu.org/">GNU C compiler</a> -gcc 2.8.1 or later is known to work -well. - -<p>You must have the -<a href="http://www.python.org/">Python</a> -interpreter installed somewhere on your system. Currently Python 2.1 -or newer is required, with Python 2.3.3 being recommended. Mailman -should work with latest patch release on any Python branch from 2.1 to -2.3, which as of this writing (31-Dec-2003) is -<a href="http://www.python.org/2.1.3/">Python 2.1.3</a>, -<a href="http://www.python.org/2.2.3/">Python 2.2.3</a>, and -<a href="http://www.python.org/2.3.3/">Python 2.3.3</a>. +See the <a href="requirements.html">requirements page</a> for the list of +pre-requisites. <h3>Downloading</h3> diff --git a/admin/www/faq.html b/admin/www/faq.html index c7b1eb3e..dba445c7 100644 --- a/admin/www/faq.html +++ b/admin/www/faq.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:23 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/features.ht b/admin/www/features.ht index dca77bf9..3ea76a90 100644 --- a/admin/www/features.ht +++ b/admin/www/features.ht @@ -5,9 +5,10 @@ Other-links: <h3>Mailman Features</h3> -Here's a brief description of the new features in Mailman 2.1 -The <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mailman/mailman/NEWS?rev=HEAD&content-type=text/vnd.viewcvs-markup" ->NEWS</a> file contains a detailed summary of all new features. +Here's a brief description of the features in Mailman 2.1 +The +<a href="http://cvs.sourceforge.net/viewcvs.py/mailman/mailman/NEWS?only_with_tag=Release_2_1-maint">NEWS</a> +file contains a detailed summary of all new features. <ul> <li>Through-the-web list creation and removal (with automatic diff --git a/admin/www/features.html b/admin/www/features.html index 2289a31d..b4db329b 100644 --- a/admin/www/features.html +++ b/admin/www/features.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:21 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -150,9 +150,10 @@ entire article is permitted in any medium, provided this notice is preserved. <td valign="top" width="90%" class="body"><br> <h3>Mailman Features</h3> -Here's a brief description of the new features in Mailman 2.1 -The <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mailman/mailman/NEWS?rev=HEAD&content-type=text/vnd.viewcvs-markup" ->NEWS</a> file contains a detailed summary of all new features. +Here's a brief description of the features in Mailman 2.1 +The +<a href="http://cvs.sourceforge.net/viewcvs.py/mailman/mailman/NEWS?only_with_tag=Release_2_1-maint">NEWS</a> +file contains a detailed summary of all new features. <ul> <li>Through-the-web list creation and removal (with automatic diff --git a/admin/www/help.html b/admin/www/help.html index 90bdb043..285649aa 100644 --- a/admin/www/help.html +++ b/admin/www/help.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/i18n.ht b/admin/www/i18n.ht index 78dc6fd3..e0c389c1 100644 --- a/admin/www/i18n.ht +++ b/admin/www/i18n.ht @@ -68,7 +68,7 @@ Project</a> for future language support. </tr> <tr><td>zh_TW</td> <td><a href="mailto:ping@pingyeh.net">Ping Yeh</td> - <td>Pending</td> + <td>Supported</td> </tr> <tr><td>Croatian</td><td>hr</td> <td><a href="mailto:nkatic@public.srce.hr">Nino Katic</a></td> diff --git a/admin/www/i18n.html b/admin/www/i18n.html index bc188a0d..7af451ff 100644 --- a/admin/www/i18n.html +++ b/admin/www/i18n.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat May 14 14:42:37 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -246,7 +246,7 @@ Project</a> for future language support. </tr> <tr><td>zh_TW</td> <td><a href="mailto:ping@pingyeh.net">Ping Yeh</td> - <td>Pending</td> + <td>Supported</td> </tr> <tr><td>Croatian</td><td>hr</td> <td><a href="mailto:nkatic@public.srce.hr">Nino Katic</a></td> diff --git a/admin/www/index.ht b/admin/www/index.ht index b885a630..f4a1fcc5 100644 --- a/admin/www/index.ht +++ b/admin/www/index.ht @@ -35,14 +35,10 @@ reporting suspected security vulnerabilities. <h3>Current Version</h3> -The current stable GNU Mailman version is 2.1.5, released on 15-May-2004. -If you are running this version you want to read the -<a href="security.html">security notice</a>. -<p>Version -<!-VERSION--->2.1.6rc4<!-VERSION--->, -(released on -<!-DATE--->14-May-2005<!-DATE--->) -is the current patch development release. +The current stable GNU Mailman version is +<!-VERSION--->2.1.6<!-VERSION--->, +released on +<!-DATE--->30-May-2005<!-DATE--->. <h3>Acknowledgements</h3> @@ -51,12 +47,15 @@ is the current patch development release. <a href="mailto:%62%61%72%72%79%40%70%79%74%68%6F%6E%2E%6F%72%67" >barry at python dot org</a>. +<p>Tokio Kikuchi served as the release manager for the 2.1.6 release, and much +thanks go to him for incorporating lots of bug fixes and patches. + <p>Thanks go to <a href="http://www.control.com/">Control.com</a> for their sponsorship of new Mailman 2.1 features such as the topic filters, -external membership sources, and "virtual" mailing lists. Also, a -huge thanks goes out to my employer <a href="http://www.zope.com">Zope -Corporation</a> for their support, as well as the +external membership sources, and "virtual" mailing lists. Also, +thanks goes out to <a href="http://www.zope.com">Zope +Corporation</a>, as well as the <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mailman/mailman/ACKNOWLEDGMENTS?rev=HEAD&content-type=text/vnd.viewcvs-markup" >list of contributors</a>, bug hunters, big idea people, and others who have helped immensely with Mailman's development. diff --git a/admin/www/index.html b/admin/www/index.html index a9af58f9..c3b2837e 100644 --- a/admin/www/index.html +++ b/admin/www/index.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat May 14 14:48:04 2005 --> +<!-- Mon May 30 15:49:38 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -188,14 +188,10 @@ reporting suspected security vulnerabilities. <h3>Current Version</h3> -The current stable GNU Mailman version is 2.1.5, released on 15-May-2004. -If you are running this version you want to read the -<a href="security.html">security notice</a>. -<p>Version -<!-VERSION--->2.1.6rc4<!-VERSION--->, -(released on -<!-DATE--->14-May-2005<!-DATE--->) -is the current patch development release. +The current stable GNU Mailman version is +<!-VERSION--->2.1.6<!-VERSION--->, +released on +<!-DATE--->30-May-2005<!-DATE--->. <h3>Acknowledgements</h3> @@ -204,12 +200,15 @@ is the current patch development release. <a href="mailto:%62%61%72%72%79%40%70%79%74%68%6F%6E%2E%6F%72%67" >barry at python dot org</a>. +<p>Tokio Kikuchi served as the release manager for the 2.1.6 release, and much +thanks go to him for incorporating lots of bug fixes and patches. + <p>Thanks go to <a href="http://www.control.com/">Control.com</a> for their sponsorship of new Mailman 2.1 features such as the topic filters, -external membership sources, and "virtual" mailing lists. Also, a -huge thanks goes out to my employer <a href="http://www.zope.com">Zope -Corporation</a> for their support, as well as the +external membership sources, and "virtual" mailing lists. Also, +thanks goes out to <a href="http://www.zope.com">Zope +Corporation</a>, as well as the <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mailman/mailman/ACKNOWLEDGMENTS?rev=HEAD&content-type=text/vnd.viewcvs-markup" >list of contributors</a>, bug hunters, big idea people, and others who have helped immensely with Mailman's development. diff --git a/admin/www/install.ht b/admin/www/install.ht index 0f4a444f..e5d6ac46 100644 --- a/admin/www/install.ht +++ b/admin/www/install.ht @@ -4,14 +4,8 @@ Links: links.h download-links.h <h3>Installing Mailman</h3> For detailed installation instructions, please see the -<code>INSTALL</code> file in the source distribution. +<a href="mailman-install/index.html">GNU Mailman Installation Manual</a>. -<!-- Commented out, but I hope to make this true soon - -For detailed installation instructions, see the <em>Installing</em> -chapter of the <a href="site.html">Site Administrator's Guide</a>. ---> - -Be sure to read the <code>README</code> and <code>UPGRADING</code> +<p>Be sure to read the <code>README</code> and <code>UPGRADING</code> files in the source distribution for additional instructions, hints, and warnings. diff --git a/admin/www/install.html b/admin/www/install.html index 18a7d45d..2021049f 100644 --- a/admin/www/install.html +++ b/admin/www/install.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:52:56 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -112,16 +112,16 @@ Overview Downloading </font></b></td></tr> <tr><td bgcolor="#eecfa1"> -<a href="download.html">Downloading</a> +<a href="requirements.html">Requirements</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="version.html">Latest Version</a> +<a href="download.html">Downloading</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="requirements.html">Requirements</a> +<b>Installing</b> </td></tr> <tr><td bgcolor="#eecfa1"> -<b>Installing</b> +<a href="version.html">Latest Version</a> </td></tr> <tr><td bgcolor="#eecfa1"> </td></tr> <tr><td bgcolor="#36648b"><b><font color="#ffffff"> @@ -179,15 +179,9 @@ entire article is permitted in any medium, provided this notice is preserved. <h3>Installing Mailman</h3> For detailed installation instructions, please see the -<code>INSTALL</code> file in the source distribution. - -<!-- Commented out, but I hope to make this true soon - -For detailed installation instructions, see the <em>Installing</em> -chapter of the <a href="site.html">Site Administrator's Guide</a>. ---> +<a href="mailman-install/index.html">GNU Mailman Installation Manual</a>. -Be sure to read the <code>README</code> and <code>UPGRADING</code> +<p>Be sure to read the <code>README</code> and <code>UPGRADING</code> files in the source distribution for additional instructions, hints, and warnings. diff --git a/admin/www/inthenews.ht b/admin/www/inthenews.ht index d75bbd11..db537269 100644 --- a/admin/www/inthenews.ht +++ b/admin/www/inthenews.ht @@ -579,4 +579,33 @@ Mailman or Mailman technology to run their mailing lists. <li><a href="http://www.thesolutioncafe.com">The Solution Cafe, Inc.</a> <!-- Andrew McCarron --> <li><a href="http://www.hostcapacity.com">Host Capacity</a> + <!-- Jim Papamichos --> + <li><a href="http://xms.gr">xms.gr</a> + <!-- John Burden --> + <li><a href="http://www.markethotline.com">Market Hotline</a> + <!-- Marco Salgado Arellano --> + <li><a href="http://listas.inf.utfsm.cl">Universidad Tecnica Federico + Santa Maria, Departamento de Informatica, Valparaiso, Chile</a> + <!-- Tom Knight --> + <li><a href="http://www.ahds.ac.uk">Arts & Humanities Data Service</a> + <!-- Manuel Alejandro Rodriguez --> + <li><a href="http://www.mmug.org.ar">Macromedia User Group Argentina</a> + <!-- ScratchMonkey --> + <li><a href="http://lists.matureasskickers.net/mailman/listinfo" + >MatureAsskickers</a> + <!-- François Renaville --> + <li><a href="http://www.lists.ulg.ac.be/mailman/listinfo/euroback" + >Euroback</a> + <!-- Oliver Schulze L. --> + <li><a href="http://www.linux.org.py/mailman/listinfo">Linux Users in + Paraguay-South America</a> + <!-- André Fliß --> + <li><a href="http://www.planetgroove.com"/>Planet Groove</a> + <!-- Bill Osborne --> + <li><a href="http://www.isfa.com">Isfa.com</a> + <!-- Dane --> + <li><a href="http://www.z-7.ch">Z7</a> + <!-- Giovani Spagnolo --> + <li><a href="http://listas.softwarelivre.org">Projecto Software Livre + Brasil</a> </ul> diff --git a/admin/www/inthenews.html b/admin/www/inthenews.html index fc1b5c2b..a03d6b59 100644 --- a/admin/www/inthenews.html +++ b/admin/www/inthenews.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sun Mar 13 10:34:28 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -739,6 +739,35 @@ Mailman or Mailman technology to run their mailing lists. <li><a href="http://www.thesolutioncafe.com">The Solution Cafe, Inc.</a> <!-- Andrew McCarron --> <li><a href="http://www.hostcapacity.com">Host Capacity</a> + <!-- Jim Papamichos --> + <li><a href="http://xms.gr">xms.gr</a> + <!-- John Burden --> + <li><a href="http://www.markethotline.com">Market Hotline</a> + <!-- Marco Salgado Arellano --> + <li><a href="http://listas.inf.utfsm.cl">Universidad Tecnica Federico + Santa Maria, Departamento de Informatica, Valparaiso, Chile</a> + <!-- Tom Knight --> + <li><a href="http://www.ahds.ac.uk">Arts & Humanities Data Service</a> + <!-- Manuel Alejandro Rodriguez --> + <li><a href="http://www.mmug.org.ar">Macromedia User Group Argentina</a> + <!-- ScratchMonkey --> + <li><a href="http://lists.matureasskickers.net/mailman/listinfo" + >MatureAsskickers</a> + <!-- François Renaville --> + <li><a href="http://www.lists.ulg.ac.be/mailman/listinfo/euroback" + >Euroback</a> + <!-- Oliver Schulze L. --> + <li><a href="http://www.linux.org.py/mailman/listinfo">Linux Users in + Paraguay-South America</a> + <!-- André Fliß --> + <li><a href="http://www.planetgroove.com"/>Planet Groove</a> + <!-- Bill Osborne --> + <li><a href="http://www.isfa.com">Isfa.com</a> + <!-- Dane --> + <li><a href="http://www.z-7.ch">Z7</a> + <!-- Giovani Spagnolo --> + <li><a href="http://listas.softwarelivre.org">Projecto Software Livre + Brasil</a> </ul> </td><!-- end of body cell --> diff --git a/admin/www/jwzrebuttal.html b/admin/www/jwzrebuttal.html index cd77b468..3de41126 100644 --- a/admin/www/jwzrebuttal.html +++ b/admin/www/jwzrebuttal.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/lists.html b/admin/www/lists.html index ad7dbcda..11810684 100644 --- a/admin/www/lists.html +++ b/admin/www/lists.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/mailman-install.pdf b/admin/www/mailman-install.pdf Binary files differindex 75034fba..db0858b7 100644 --- a/admin/www/mailman-install.pdf +++ b/admin/www/mailman-install.pdf diff --git a/admin/www/mailman-install.ps b/admin/www/mailman-install.ps index c6e08b4b..9bd9db0e 100644 --- a/admin/www/mailman-install.ps +++ b/admin/www/mailman-install.ps @@ -10,7 +10,7 @@ %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -N0 -o mailman-install.ps mailman-install %DVIPSParameters: dpi=600, compressed -%DVIPSSource: TeX output 2005.05.12:2357 +%DVIPSSource: TeX output 2005.05.30:1556 %%BeginProcSet: texc.pro %! /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S @@ -399,7 +399,7 @@ TeXDict begin TeXDict begin 1 0 bop 0 83 3901 9 v 700 357 a Fz(GNU)57 b(Mailman)g(-)g(Installation)h(Man)n(ual)3368 504 y Fy(Release)30 b(2.1)3153 859 y Fx(Barr)t(y)i(W)-5 b(arsa)n(w)3436 1213 -y Fw(May)20 b(12,)g(2005)3265 1360 y Fv(barr)r(y\(at\)p)n(ython.org) +y Fw(May)20 b(30,)g(2005)3265 1360 y Fv(barr)r(y\(at\)p)n(ython.org) 1811 1581 y Fu(Abstract)208 1732 y Ft(This)30 b(document)j(describes)f (ho)n(w)g(to)f(install)f(GNU)h(Mailman)h(on)f(a)g(POSIX-based)g(system) h(such)g(as)h(U)t Fs(N)t(I)t(X)r Ft(,)f(MacOSX,)f(or)208 diff --git a/admin/www/mailman-install.txt b/admin/www/mailman-install.txt index 9071639a..bc46faab 100644 --- a/admin/www/mailman-install.txt +++ b/admin/www/mailman-install.txt @@ -11,7 +11,7 @@ GNU Mailman - Installation Manual barry(at)python.org Release 2.1 - May 12, 2005 + May 30, 2005 Front Matter @@ -1505,7 +1505,7 @@ tar xvf MailmanStartup.tar About this document ... - GNU Mailman - Installation Manual, May 12, 2005, Release 2.1 + GNU Mailman - Installation Manual, May 30, 2005, Release 2.1 This document was generated using the LaTeX2HTML translator. @@ -1560,4 +1560,4 @@ tar xvf MailmanStartup.tar Previous Page Up One Level Next Page GNU Mailman - Installation Manual _________________________________________________________________ - Release 2.1, documentation updated on May 12, 2005. + Release 2.1, documentation updated on May 30, 2005. diff --git a/admin/www/mailman-install/about.html b/admin/www/mailman-install/about.html index c83efd43..e9f05914 100644 --- a/admin/www/mailman-install/about.html +++ b/admin/www/mailman-install/about.html @@ -45,7 +45,7 @@ About this document ...</A> </H1> <strong>GNU Mailman - Installation Manual</strong>, -May 12, 2005, Release 2.1 +May 30, 2005, Release 2.1 <p> This document was generated using the <a href="http://saftsack.fs.uni-bayreuth.de/~latex2ht/"> <strong>LaTeX</strong>2<tt>HTML</tt></a> translator. @@ -100,7 +100,7 @@ May 12, 2005, Release 2.1 </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/bsd-issues.html b/admin/www/mailman-install/bsd-issues.html index 79df2e39..d0db23ad 100644 --- a/admin/www/mailman-install/bsd-issues.html +++ b/admin/www/mailman-install/bsd-issues.html @@ -105,7 +105,7 @@ This disables the <b class="program">chmod g+s</b> command on installed director </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/create-install-dir.html b/admin/www/mailman-install/create-install-dir.html index f3e9a0eb..2542c5c9 100644 --- a/admin/www/mailman-install/create-install-dir.html +++ b/admin/www/mailman-install/create-install-dir.html @@ -140,7 +140,7 @@ for additional information. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/customizing.html b/admin/www/mailman-install/customizing.html index f4fc8673..17d1a586 100644 --- a/admin/www/mailman-install/customizing.html +++ b/admin/www/mailman-install/customizing.html @@ -130,7 +130,7 @@ line scripts, such as <b class="program">bin/withlist</b> and <b class="program" </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/exim3-transport.html b/admin/www/mailman-install/exim3-transport.html index ec7b7119..e2f1be37 100644 --- a/admin/www/mailman-install/exim3-transport.html +++ b/admin/www/mailman-install/exim3-transport.html @@ -104,7 +104,7 @@ i.e. somewhere between the first and second ``end'' line: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/front.html b/admin/www/mailman-install/front.html index 72007a1c..cde05370 100644 --- a/admin/www/mailman-install/front.html +++ b/admin/www/mailman-install/front.html @@ -173,7 +173,7 @@ The GNU Mailman website is at <a class="url" href="http://www.list.org">http://w </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/index.html b/admin/www/mailman-install/index.html index 97958dea..50d7fb99 100644 --- a/admin/www/mailman-install/index.html +++ b/admin/www/mailman-install/index.html @@ -45,7 +45,7 @@ <p><b><font size="+2">Barry Warsaw</font></b></p> <p><span class="email">barry(at)python.org</span></p> <p><strong>Release 2.1</strong><br /> -<strong>May 12, 2005</strong></p> +<strong>May 30, 2005</strong></p> <p></p> </div> </div> @@ -126,7 +126,7 @@ </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/mail-server.html b/admin/www/mailman-install/mail-server.html index a2c7ddc6..ed9a4e01 100644 --- a/admin/www/mailman-install/mail-server.html +++ b/admin/www/mailman-install/mail-server.html @@ -136,7 +136,7 @@ contributing documentation updates to the Mailman developers. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/mailman-install.html b/admin/www/mailman-install/mailman-install.html index 97958dea..50d7fb99 100644 --- a/admin/www/mailman-install/mailman-install.html +++ b/admin/www/mailman-install/mailman-install.html @@ -45,7 +45,7 @@ <p><b><font size="+2">Barry Warsaw</font></b></p> <p><span class="email">barry(at)python.org</span></p> <p><strong>Release 2.1</strong><br /> -<strong>May 12, 2005</strong></p> +<strong>May 30, 2005</strong></p> <p></p> </div> </div> @@ -126,7 +126,7 @@ </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node10.html b/admin/www/mailman-install/node10.html index 5b5740ee..3117a002 100644 --- a/admin/www/mailman-install/node10.html +++ b/admin/www/mailman-install/node10.html @@ -184,7 +184,7 @@ Now restart your web server. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node12.html b/admin/www/mailman-install/node12.html index 0dd38f8a..9fafaad9 100644 --- a/admin/www/mailman-install/node12.html +++ b/admin/www/mailman-install/node12.html @@ -145,7 +145,7 @@ virtual domain support below. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node13.html b/admin/www/mailman-install/node13.html index e4a7688e..1a80655e 100644 --- a/admin/www/mailman-install/node13.html +++ b/admin/www/mailman-install/node13.html @@ -197,7 +197,7 @@ tables. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node15.html b/admin/www/mailman-install/node15.html index 84e10c7f..c9c872a5 100644 --- a/admin/www/mailman-install/node15.html +++ b/admin/www/mailman-install/node15.html @@ -102,7 +102,7 @@ instead of <code>mylist@dom.ain</code>. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node16.html b/admin/www/mailman-install/node16.html index 94d82142..eb290a45 100644 --- a/admin/www/mailman-install/node16.html +++ b/admin/www/mailman-install/node16.html @@ -123,7 +123,7 @@ those in the config fragments given below. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node17.html b/admin/www/mailman-install/node17.html index 43ed8f45..b16714db 100644 --- a/admin/www/mailman-install/node17.html +++ b/admin/www/mailman-install/node17.html @@ -143,7 +143,7 @@ and 2.1 installations, with the proviso that you'll probably want to use </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node18.html b/admin/www/mailman-install/node18.html index d473f710..46310856 100644 --- a/admin/www/mailman-install/node18.html +++ b/admin/www/mailman-install/node18.html @@ -102,7 +102,7 @@ you'll need to edit these based on how you configured and installed Mailman. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node2.html b/admin/www/mailman-install/node2.html index 89a8850c..0004f149 100644 --- a/admin/www/mailman-install/node2.html +++ b/admin/www/mailman-install/node2.html @@ -114,7 +114,7 @@ Python 2.3 or newer is recommended. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node20.html b/admin/www/mailman-install/node20.html index 8eb51239..49c4fac2 100644 --- a/admin/www/mailman-install/node20.html +++ b/admin/www/mailman-install/node20.html @@ -106,7 +106,7 @@ aliasfile director, or vice-versa. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node21.html b/admin/www/mailman-install/node21.html index d7743f31..f40a405e 100644 --- a/admin/www/mailman-install/node21.html +++ b/admin/www/mailman-install/node21.html @@ -103,7 +103,7 @@ file, and remember that order matters. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node22.html b/admin/www/mailman-install/node22.html index f50ed1cf..0c44ada2 100644 --- a/admin/www/mailman-install/node22.html +++ b/admin/www/mailman-install/node22.html @@ -89,7 +89,7 @@ transports'' line of your Exim config file. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node23.html b/admin/www/mailman-install/node23.html index e416803d..a56827ee 100644 --- a/admin/www/mailman-install/node23.html +++ b/admin/www/mailman-install/node23.html @@ -93,7 +93,7 @@ mail, unless you like receiving tons of mail when some random host is down. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node24.html b/admin/www/mailman-install/node24.html index d4b2ed7d..32fd10ff 100644 --- a/admin/www/mailman-install/node24.html +++ b/admin/www/mailman-install/node24.html @@ -119,7 +119,7 @@ </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node25.html b/admin/www/mailman-install/node25.html index bcb132f9..67ed1f90 100644 --- a/admin/www/mailman-install/node25.html +++ b/admin/www/mailman-install/node25.html @@ -126,7 +126,7 @@ from non-127.0.0.1 hosts, but it should do the trick for Mailman.) </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node26.html b/admin/www/mailman-install/node26.html index 108c90ac..e5a8bbba 100644 --- a/admin/www/mailman-install/node26.html +++ b/admin/www/mailman-install/node26.html @@ -131,7 +131,7 @@ this in your <code>DATA</code> ACL: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node27.html b/admin/www/mailman-install/node27.html index 252bcbad..97d73ea3 100644 --- a/admin/www/mailman-install/node27.html +++ b/admin/www/mailman-install/node27.html @@ -101,7 +101,7 @@ In a nutshell, all you need to do to enable VERP with Exim is to add these lines </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node28.html b/admin/www/mailman-install/node28.html index c20e1990..2e26341d 100644 --- a/admin/www/mailman-install/node28.html +++ b/admin/www/mailman-install/node28.html @@ -113,7 +113,7 @@ and change your transport like this: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node29.html b/admin/www/mailman-install/node29.html index 96c00a77..858c85ba 100644 --- a/admin/www/mailman-install/node29.html +++ b/admin/www/mailman-install/node29.html @@ -115,7 +115,7 @@ functioning perfectly, though! </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node3.html b/admin/www/mailman-install/node3.html index 2d82b90f..6dd886a6 100644 --- a/admin/www/mailman-install/node3.html +++ b/admin/www/mailman-install/node3.html @@ -101,7 +101,7 @@ in this section. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node30.html b/admin/www/mailman-install/node30.html index 70b3fbd7..c2c18850 100644 --- a/admin/www/mailman-install/node30.html +++ b/admin/www/mailman-install/node30.html @@ -89,7 +89,7 @@ Overhauled/reformatted/clarified/simplified by Greg Ward </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node31.html b/admin/www/mailman-install/node31.html index 73e751e6..b95b47b6 100644 --- a/admin/www/mailman-install/node31.html +++ b/admin/www/mailman-install/node31.html @@ -120,7 +120,7 @@ what you're doing in order to re-enable it. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node32.html b/admin/www/mailman-install/node32.html index c5801a05..260ed641 100644 --- a/admin/www/mailman-install/node32.html +++ b/admin/www/mailman-install/node32.html @@ -139,7 +139,7 @@ One good way of enabling this is: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node33.html b/admin/www/mailman-install/node33.html index 73e87b97..0ee74ccd 100644 --- a/admin/www/mailman-install/node33.html +++ b/admin/www/mailman-install/node33.html @@ -107,7 +107,7 @@ find four files: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node34.html b/admin/www/mailman-install/node34.html index 0c842069..868e7b35 100644 --- a/admin/www/mailman-install/node34.html +++ b/admin/www/mailman-install/node34.html @@ -92,7 +92,7 @@ connections. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node36.html b/admin/www/mailman-install/node36.html index 5f8de237..60fda912 100644 --- a/admin/www/mailman-install/node36.html +++ b/admin/www/mailman-install/node36.html @@ -107,7 +107,7 @@ is the more qmail-friendly approach resulting in large performance gains. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node37.html b/admin/www/mailman-install/node37.html index fd180d41..0ce60813 100644 --- a/admin/www/mailman-install/node37.html +++ b/admin/www/mailman-install/node37.html @@ -93,7 +93,7 @@ Again, this patch is for people familiar with their qmail installation. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node38.html b/admin/www/mailman-install/node38.html index 6ded5dd1..13ce7c5b 100644 --- a/admin/www/mailman-install/node38.html +++ b/admin/www/mailman-install/node38.html @@ -89,7 +89,7 @@ Bollow has written about Mailman and qmail, available here: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node4.html b/admin/www/mailman-install/node4.html index 3d627226..f712fbae 100644 --- a/admin/www/mailman-install/node4.html +++ b/admin/www/mailman-install/node4.html @@ -121,7 +121,7 @@ installation is complete. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node40.html b/admin/www/mailman-install/node40.html index 76b9ec19..19e8b4f9 100644 --- a/admin/www/mailman-install/node40.html +++ b/admin/www/mailman-install/node40.html @@ -121,7 +121,7 @@ You should also subscribe yourself to the site list. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node41.html b/admin/www/mailman-install/node41.html index 70fd2c3d..0817c12e 100644 --- a/admin/www/mailman-install/node41.html +++ b/admin/www/mailman-install/node41.html @@ -123,7 +123,7 @@ parallel Mailman installations. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node42.html b/admin/www/mailman-install/node42.html index 0b2c081e..64ac342e 100644 --- a/admin/www/mailman-install/node42.html +++ b/admin/www/mailman-install/node42.html @@ -150,7 +150,7 @@ following set of commands: </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node43.html b/admin/www/mailman-install/node43.html index 9e50695a..8c894088 100644 --- a/admin/www/mailman-install/node43.html +++ b/admin/www/mailman-install/node43.html @@ -100,7 +100,7 @@ existing lists. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node44.html b/admin/www/mailman-install/node44.html index b2606658..a0dfb407 100644 --- a/admin/www/mailman-install/node44.html +++ b/admin/www/mailman-install/node44.html @@ -119,7 +119,7 @@ password. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node45.html b/admin/www/mailman-install/node45.html index 4a55c1b6..a2facfe2 100644 --- a/admin/www/mailman-install/node45.html +++ b/admin/www/mailman-install/node45.html @@ -145,7 +145,7 @@ list. If you had any problems along the way, please see the </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node47.html b/admin/www/mailman-install/node47.html index f02b9eab..ec2bc59b 100644 --- a/admin/www/mailman-install/node47.html +++ b/admin/www/mailman-install/node47.html @@ -104,7 +104,7 @@ recommended installation or configuration instructions. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node48.html b/admin/www/mailman-install/node48.html index a5d78a97..f80f5b58 100644 --- a/admin/www/mailman-install/node48.html +++ b/admin/www/mailman-install/node48.html @@ -146,7 +146,7 @@ This problem can manifest itself in other Linux distributions in </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node50.html b/admin/www/mailman-install/node50.html index 52bdb69f..61fea798 100644 --- a/admin/www/mailman-install/node50.html +++ b/admin/www/mailman-install/node50.html @@ -220,7 +220,7 @@ start up. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node6.html b/admin/www/mailman-install/node6.html index f8446806..90db804e 100644 --- a/admin/www/mailman-install/node6.html +++ b/admin/www/mailman-install/node6.html @@ -97,7 +97,7 @@ </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node7.html b/admin/www/mailman-install/node7.html index 761c706d..38510634 100644 --- a/admin/www/mailman-install/node7.html +++ b/admin/www/mailman-install/node7.html @@ -242,7 +242,7 @@ If you're using Apache, check the values for the <var>Group</var> option in </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node8.html b/admin/www/mailman-install/node8.html index f1ce4a9a..7bc207d0 100644 --- a/admin/www/mailman-install/node8.html +++ b/admin/www/mailman-install/node8.html @@ -87,7 +87,7 @@ Once you've run <b class="program">configure</b>, you can simply run <b class="p </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/node9.html b/admin/www/mailman-install/node9.html index 498f47fc..b2a7f5a9 100644 --- a/admin/www/mailman-install/node9.html +++ b/admin/www/mailman-install/node9.html @@ -138,7 +138,7 @@ configuration. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/postfix-virtual.html b/admin/www/mailman-install/postfix-virtual.html index 91775ad6..45760777 100644 --- a/admin/www/mailman-install/postfix-virtual.html +++ b/admin/www/mailman-install/postfix-virtual.html @@ -188,7 +188,7 @@ group owned by <code>mailman</code>. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/qmail-issues.html b/admin/www/mailman-install/qmail-issues.html index 86fbee16..3bafd93d 100644 --- a/admin/www/mailman-install/qmail-issues.html +++ b/admin/www/mailman-install/qmail-issues.html @@ -300,7 +300,7 @@ fi </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mailman-install/troubleshooting.html b/admin/www/mailman-install/troubleshooting.html index fa6d153e..2f175a6a 100644 --- a/admin/www/mailman-install/troubleshooting.html +++ b/admin/www/mailman-install/troubleshooting.html @@ -251,7 +251,7 @@ publicly visible. </div> </div> <hr /> -<span class="release-info">Release 2.1, documentation updated on May 12, 2005.</span> +<span class="release-info">Release 2.1, documentation updated on May 30, 2005.</span> </DIV> <!--End of Navigation Panel--> diff --git a/admin/www/mgrs.html b/admin/www/mgrs.html index b5f1addd..38cf862a 100644 --- a/admin/www/mgrs.html +++ b/admin/www/mgrs.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/mirrors.html b/admin/www/mirrors.html index d1ce61d9..998cb172 100644 --- a/admin/www/mirrors.html +++ b/admin/www/mirrors.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/otherstuff.ht b/admin/www/otherstuff.ht index 5fbf3c6d..07354c99 100644 --- a/admin/www/otherstuff.ht +++ b/admin/www/otherstuff.ht @@ -17,8 +17,7 @@ authors of the articles only. <ul> <li><a href="http://www.usenix.org/events/usenix03/tech/freenix03/warsaw.html" >GNU Mailman, Internationalized</a>, Warsaw, USENIX 2003 Annual -Technical Conference, FREENIX Track. <em>Note: requires USENIX membership to -access full text until June 2004.</em> +Technical Conference, FREENIX Track. <li><a href="http://www.foretec.com/python/workshops/1998-11/proceedings/papers/manheimer/manheimer.html" >Mailman - An Extensible Mailing List Manager Using Python</a>, Manheimer, diff --git a/admin/www/otherstuff.html b/admin/www/otherstuff.html index 0fa0d503..b9012a4a 100644 --- a/admin/www/otherstuff.html +++ b/admin/www/otherstuff.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -183,8 +183,7 @@ authors of the articles only. <ul> <li><a href="http://www.usenix.org/events/usenix03/tech/freenix03/warsaw.html" >GNU Mailman, Internationalized</a>, Warsaw, USENIX 2003 Annual -Technical Conference, FREENIX Track. <em>Note: requires USENIX membership to -access full text until June 2004.</em> +Technical Conference, FREENIX Track. <li><a href="http://www.foretec.com/python/workshops/1998-11/proceedings/papers/manheimer/manheimer.html" >Mailman - An Extensible Mailing List Manager Using Python</a>, Manheimer, diff --git a/admin/www/prev.ht b/admin/www/prev.ht index a48031be..de09a122 100644 --- a/admin/www/prev.ht +++ b/admin/www/prev.ht @@ -10,11 +10,10 @@ documentation that comes with Mailman 2.1 for details. <p>Mailman 2.0.13 works with any Python version from 1.5.2 to 2.3 (still in alpha development as of this writing 26-Dec-2002). Mailman -2.1 requires at least Python 2.1.3 and works best with Python 2.2.2. +2.1 requires at least Python 2.1.3 and works best with Python 2.3 or 2.4. If you plan on upgrading Mailman, I first recommend that you upgrade -to Python 2.2.2, and then upgrade Mailman. +Python, and then upgrade Mailman. <p>There are tons of <a href="features.html">new features</a> in Mailman 2.1, and no new development is being done on the Mailman 2.0.x -branch. Only absolutely critical security fixes will be issued for -Mailman 2.0 -- the last one was issued on 29-Jul-2002. +branch. diff --git a/admin/www/prev.html b/admin/www/prev.html index dc0dd6e9..b45c0922 100644 --- a/admin/www/prev.html +++ b/admin/www/prev.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:39 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -170,14 +170,13 @@ documentation that comes with Mailman 2.1 for details. <p>Mailman 2.0.13 works with any Python version from 1.5.2 to 2.3 (still in alpha development as of this writing 26-Dec-2002). Mailman -2.1 requires at least Python 2.1.3 and works best with Python 2.2.2. +2.1 requires at least Python 2.1.3 and works best with Python 2.3 or 2.4. If you plan on upgrading Mailman, I first recommend that you upgrade -to Python 2.2.2, and then upgrade Mailman. +Python, and then upgrade Mailman. <p>There are tons of <a href="features.html">new features</a> in Mailman 2.1, and no new development is being done on the Mailman 2.0.x -branch. Only absolutely critical security fixes will be issued for -Mailman 2.0 -- the last one was issued on 29-Jul-2002. +branch. </td><!-- end of body cell --> </tr><!-- end of sidebar/body row --> diff --git a/admin/www/requirements.ht b/admin/www/requirements.ht index 1b3de658..977413cb 100644 --- a/admin/www/requirements.ht +++ b/admin/www/requirements.ht @@ -14,43 +14,55 @@ Other-links: <p>Mailman currently runs only on GNU/Linux and any other Un*x-like operating system, such as *BSD, Solaris, etc. It should work on -MacOSX but not earlier versions of MacOS. It probably does not work +MacOSX but not on MacOS 9. It probably does not work on Windows, although it's possible you could get it running on a Cygwin system (please <a href="mailto:mailman-developers@python.org">let the developer community know</a> if you have success with this!) -<p>Before you can run Mailman, you need to make sure that -<a href="http://www.python.org/">Python</a> is installed. Mailman 2.1 -requires at least Python 2.1.3, although Python 2.2.2 is -recommended. 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: +<p>You must have the +<a href="http://www.python.org/">Python</a> +interpreter installed somewhere on your system. Currently Python 2.1 +or newer is required, with Python 2.3 or 2.4 being recommended. Mailman +should work with latest patch release on any Python branch from 2.1 to +2.4, which as of this writing (30-May-2005) is +<a href="http://www.python.org/2.1.3/">Python 2.1.3</a>, +<a href="http://www.python.org/2.2.3/">Python 2.2.3</a>, +<a href="http://www.python.org/2.3.5/">Python 2.3.5</a>, and +<a href="http://www.python.org/2.4.1/">Python 2.4.1</a>. + +<p><em>Note that because Python 2.1 and 2.2 are no longer being developed, and +only critical bugs are being fixed on the Python 2.3 branch, it is recommended +that you upgrade to Python 2.4. It is possible that support for Python 2.1 +and 2.2 will be dropped in a future release of Mailman. Python 2.3 support +will most likely be maintained for the duration of the Mailman 2.1 series.</em> + +<p>Most GNU/Linux systems and MacOSX 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: <blockquote> <pre> % python -V -Python 2.1.3 +Python 2.4.1 </pre> </blockquote> If your Python executable doesn't understand the <code>-V</code> option, it's definitely too old! -<p>You will also need an SMTP server (a.k.a. mail transport agent or -<em>MTA</em>) for mail delivery and reception. Mailman should work -well with any of the most popular Unix mail servers such as -<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 -<a href="http://www.qmail.org/">qmail</a>. - -<p>You will also need a web server. -<a href="http://www.apache.org/">Apache</a> is certainly the most -popular, is available for all Unix systems, and works great with -Mailman. - -<p>To install Mailman from the sources, you will also need an ANSI C -compiler. The -<a href="http://www.gnu.org/software/gcc/">GNU C compiler</a> -gcc 2.8.1 or later is known to work well. +<p>You must have a mail server (MTA) that you can send messages to, and a +web server that supports the CGI/1.1 API. +<a href="http://httpd.apache.org">Apache</a> makes a fine choice +for web server, and MTAs such as +<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 +<a href="http://www.qmail.org">qmail</a> +should work just fine. + +<p>You will need an ANSI C compiler to build Mailman's security +wrappers. The +<a href="http://gcc.gnu.org/">GNU C compiler</a> +gcc 2.8.1 or later is known to work +well. diff --git a/admin/www/requirements.html b/admin/www/requirements.html index 694bd996..f8a86d3e 100644 --- a/admin/www/requirements.html +++ b/admin/www/requirements.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:51:27 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -112,16 +112,16 @@ Overview Downloading </font></b></td></tr> <tr><td bgcolor="#eecfa1"> -<a href="download.html">Downloading</a> +<b>Requirements</b> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="version.html">Latest Version</a> +<a href="download.html">Downloading</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<b>Requirements</b> +<a href="install.html">Installing</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="install.html">Installing</a> +<a href="version.html">Latest Version</a> </td></tr> <tr><td bgcolor="#eecfa1"> </td></tr> <tr><td bgcolor="#36648b"><b><font color="#ffffff"> @@ -187,46 +187,58 @@ entire article is permitted in any medium, provided this notice is preserved. <p>Mailman currently runs only on GNU/Linux and any other Un*x-like operating system, such as *BSD, Solaris, etc. It should work on -MacOSX but not earlier versions of MacOS. It probably does not work +MacOSX but not on MacOS 9. It probably does not work on Windows, although it's possible you could get it running on a Cygwin system (please <a href="mailto:mailman-developers@python.org">let the developer community know</a> if you have success with this!) -<p>Before you can run Mailman, you need to make sure that -<a href="http://www.python.org/">Python</a> is installed. Mailman 2.1 -requires at least Python 2.1.3, although Python 2.2.2 is -recommended. 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: +<p>You must have the +<a href="http://www.python.org/">Python</a> +interpreter installed somewhere on your system. Currently Python 2.1 +or newer is required, with Python 2.3 or 2.4 being recommended. Mailman +should work with latest patch release on any Python branch from 2.1 to +2.4, which as of this writing (30-May-2005) is +<a href="http://www.python.org/2.1.3/">Python 2.1.3</a>, +<a href="http://www.python.org/2.2.3/">Python 2.2.3</a>, +<a href="http://www.python.org/2.3.5/">Python 2.3.5</a>, and +<a href="http://www.python.org/2.4.1/">Python 2.4.1</a>. + +<p><em>Note that because Python 2.1 and 2.2 are no longer being developed, and +only critical bugs are being fixed on the Python 2.3 branch, it is recommended +that you upgrade to Python 2.4. It is possible that support for Python 2.1 +and 2.2 will be dropped in a future release of Mailman. Python 2.3 support +will most likely be maintained for the duration of the Mailman 2.1 series.</em> + +<p>Most GNU/Linux systems and MacOSX 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: <blockquote> <pre> % python -V -Python 2.1.3 +Python 2.4.1 </pre> </blockquote> If your Python executable doesn't understand the <code>-V</code> option, it's definitely too old! -<p>You will also need an SMTP server (a.k.a. mail transport agent or -<em>MTA</em>) for mail delivery and reception. Mailman should work -well with any of the most popular Unix mail servers such as -<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 -<a href="http://www.qmail.org/">qmail</a>. - -<p>You will also need a web server. -<a href="http://www.apache.org/">Apache</a> is certainly the most -popular, is available for all Unix systems, and works great with -Mailman. +<p>You must have a mail server (MTA) that you can send messages to, and a +web server that supports the CGI/1.1 API. +<a href="http://httpd.apache.org">Apache</a> makes a fine choice +for web server, and MTAs such as +<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 +<a href="http://www.qmail.org">qmail</a> +should work just fine. -<p>To install Mailman from the sources, you will also need an ANSI C -compiler. The -<a href="http://www.gnu.org/software/gcc/">GNU C compiler</a> -gcc 2.8.1 or later is known to work well. +<p>You will need an ANSI C compiler to build Mailman's security +wrappers. The +<a href="http://gcc.gnu.org/">GNU C compiler</a> +gcc 2.8.1 or later is known to work +well. </td><!-- end of body cell --> </tr><!-- end of sidebar/body row --> diff --git a/admin/www/security.ht b/admin/www/security.ht index 249b7745..afe39420 100644 --- a/admin/www/security.ht +++ b/admin/www/security.ht @@ -12,8 +12,8 @@ This is a closed list that reaches the core Mailman developers. <ul> <li><b>CAN-2005-0202</b> -- This is a very serious issue affecting the Mailman -2.1 series up to and including version 2.1.5. Mailman 2.1.6 is not -affected. This issue can allow for the leakage of member passwords. +2.1 series up to and including version 2.1.5. <b>Mailman 2.1.6 is not +affected</b>. This issue can allow for the leakage of member passwords. <p>A quick, immediate fix is to remove the /usr/local/mailman/cgi-bin/private executable. However, this will break any private archives your lists may be @@ -36,4 +36,9 @@ will be informed of their new passwords. <p>Credit goes to Marcus Meissner for finding this issue. </li> + +<li><b>Mailman 2.1.6</b> -- allows for more cryptographically secure (but less +user-friendly) list admin and auto-generated user passwords. Also, a +potential cross-site scripting hole has been closed. + </ul> diff --git a/admin/www/security.html b/admin/www/security.html index e1db9082..0bfbe3cf 100644 --- a/admin/www/security.html +++ b/admin/www/security.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Thu Feb 24 10:23:20 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -172,8 +172,8 @@ This is a closed list that reaches the core Mailman developers. <ul> <li><b>CAN-2005-0202</b> -- This is a very serious issue affecting the Mailman -2.1 series up to and including version 2.1.5. Mailman 2.1.6 is not -affected. This issue can allow for the leakage of member passwords. +2.1 series up to and including version 2.1.5. <b>Mailman 2.1.6 is not +affected</b>. This issue can allow for the leakage of member passwords. <p>A quick, immediate fix is to remove the /usr/local/mailman/cgi-bin/private executable. However, this will break any private archives your lists may be @@ -196,6 +196,11 @@ will be informed of their new passwords. <p>Credit goes to Marcus Meissner for finding this issue. </li> + +<li><b>Mailman 2.1.6</b> -- allows for more cryptographically secure (but less +user-friendly) list admin and auto-generated user passwords. Also, a +potential cross-site scripting hole has been closed. + </ul> </td><!-- end of body cell --> diff --git a/admin/www/site.html b/admin/www/site.html index 962843b3..8f7c463d 100644 --- a/admin/www/site.html +++ b/admin/www/site.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/todo.ht b/admin/www/todo.ht index 347d921c..178684f1 100644 --- a/admin/www/todo.ht +++ b/admin/www/todo.ht @@ -4,7 +4,7 @@ Title: The Mailman Wishlist <h3> The Mailman Wishlist </h3> <p> -<h3> (Last Update: $Date: 2005-02-12 17:13:48 +0000 (Sat, 12 Feb 2005) $) +<h3> (Last Update: $Date: 2005-05-30 21:09:15 +0100 (Mon, 30 May 2005) $) </h3> Here's the wish list for future versions of Mailman. Many new features have been added to Mailman 2.1, and it is currently diff --git a/admin/www/todo.html b/admin/www/todo.html index 581034ec..53090a8e 100644 --- a/admin/www/todo.html +++ b/admin/www/todo.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:23 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -164,7 +164,7 @@ entire article is permitted in any medium, provided this notice is preserved. <h3> The Mailman Wishlist </h3> <p> -<h3> (Last Update: $Date: 2005-02-12 17:13:48 +0000 (Sat, 12 Feb 2005) $) +<h3> (Last Update: $Date: 2005-05-30 21:09:15 +0100 (Mon, 30 May 2005) $) </h3> Here's the wish list for future versions of Mailman. Many new features have been added to Mailman 2.1, and it is currently diff --git a/admin/www/users.html b/admin/www/users.html index 907d851d..976a12d3 100644 --- a/admin/www/users.html +++ b/admin/www/users.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat Feb 12 12:13:22 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: diff --git a/admin/www/version.ht b/admin/www/version.ht index c2e74492..ef820a1f 100644 --- a/admin/www/version.ht +++ b/admin/www/version.ht @@ -4,9 +4,9 @@ Links: links.h download-links.h <h3>Current Mailman Version</h3> <p>Version -(<!-VERSION--->2.1.6rc4<!-VERSION--->, +<!-VERSION--->2.1.6<!-VERSION--->, released on -<!-DATE--->14-May-2005<!-DATE--->) +<!-DATE--->30-May-2005<!-DATE---> is the latest stable release. See also information on <a href="prev.html">previous version</a> if you're not yet ready to upgrade. diff --git a/admin/www/version.html b/admin/www/version.html index 9930093c..186598d8 100644 --- a/admin/www/version.html +++ b/admin/www/version.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/loose.dtd" > <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Sat May 14 14:48:04 2005 --> +<!-- Mon May 30 15:49:40 2005 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -112,16 +112,16 @@ Overview Downloading </font></b></td></tr> <tr><td bgcolor="#eecfa1"> -<a href="download.html">Downloading</a> +<a href="requirements.html">Requirements</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<b>Latest Version</b> +<a href="download.html">Downloading</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="requirements.html">Requirements</a> +<a href="install.html">Installing</a> </td></tr> <tr><td bgcolor="#eecfa1"> -<a href="install.html">Installing</a> +<b>Latest Version</b> </td></tr> <tr><td bgcolor="#eecfa1"> </td></tr> <tr><td bgcolor="#36648b"><b><font color="#ffffff"> @@ -179,9 +179,9 @@ entire article is permitted in any medium, provided this notice is preserved. <h3>Current Mailman Version</h3> <p>Version -(<!-VERSION--->2.1.6rc4<!-VERSION--->, +<!-VERSION--->2.1.6<!-VERSION--->, released on -<!-DATE--->14-May-2005<!-DATE--->) +<!-DATE--->30-May-2005<!-DATE---> is the latest stable release. See also information on <a href="prev.html">previous version</a> if you're not yet ready to upgrade. |