blob: 3ca2be3198fc85622731ae902ccdd1fb6eed311e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
<!-- Thu Dec 26 22:30:22 2002 -->
<!-- USING HT2HTML 2.0 -->
<!-- SEE http://ht2html.sf.net -->
<!-- User-specified headers:
Title: Downloading Mailman
-->
<head>
<title>Downloading Mailman</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="generator" content="HT2HTML/2.0">
<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">
<!-- start of banner row -->
<tr>
<!-- start of corner cells -->
<td width="150" valign="middle" bgcolor="white" class="corner">
<center>
<a href="./index.html">
<img border=0 src="./images/logo-70.jpg"></a></center> </td>
<td width="15" bgcolor="#eecfa1"> </td><!--spacer-->
<!-- end of corner cells -->
<!-- start of banner -->
<td width="90%" bgcolor="#eecfa1" class="banner">
<!-- start of site links table -->
<table width="100%" border="0"
CELLSPACING=0 CELLPADDING=0
bgcolor="#ffffff">
<tr>
<td bgcolor="#eecfa1">
<a href="./index.html">Home</a>
</td>
<td bgcolor="#eecfa1">
<a href="./docs.html">Documentation</a>
</td>
<td bgcolor="#eecfa1">
<a href="./lists.html">Mailing lists</a>
</td>
</tr><tr>
<td bgcolor="#eecfa1">
<a href="./help.html">Help</a>
</td>
<td bgcolor="#eecfa1">
<b>Download</b>
</td>
<td bgcolor="#eecfa1">
<a href="./devs.html">Developers</a>
</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="#eecfa1" class="sidebar">
<!-- start of sidebar table -->
<table width="100%" border="0" cellspacing="0" cellpadding="3"
bgcolor="#ffffff">
<tr><td bgcolor="#36648b"><b><font color="#ffffff">
Downloading
</font></b></td></tr>
<tr><td bgcolor="#eecfa1">
<b>Downloading</b>
</td></tr>
<tr><td bgcolor="#eecfa1">
<a href="version.html">Latest Version</a>
</td></tr>
<tr><td bgcolor="#eecfa1">
<a href="requirements.html">Requirements</a>
</td></tr>
<tr><td bgcolor="#eecfa1">
<a href="install.html">Installing</a>
</td></tr>
<tr><td bgcolor="#eecfa1">
<tr><td bgcolor="#36648b"><b><font color="#ffffff">
Email Us
</font></b></td></tr>
<tr><td bgcolor="#eecfa1">
<a href="mailto:mailman-users@python.org">mailman-users@python.org</a>
</td></tr>
<tr><td bgcolor="#eecfa1">
</td></tr>
<tr><td bgcolor="#eecfa1">
<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="#eecfa1">
</td></tr>
<tr><td bgcolor="#eecfa1">
© 1998-2002
Free Software Foundation, Inc. Verbatim copying and distribution of this
entire article is permitted in any medium, provided this notice is preserved.
</td></tr>
</table><!-- end of sidebar table -->
</td>
<td width="15"> </td><!--spacer-->
<!-- end of sidebar cell -->
<!-- start of body cell -->
<td valign="top" width="90%" class="body"><br>
<h3>Downloading</h3>
Mailman is available from the following sources:
<ul>
<li><a href="http://sourceforge.net/project/showfiles.php?group_id=103">SourceForge</a>
<li><a href="http://ftp.gnu.org/gnu/mailman/">GNU</a>
<li><a href="http://www.list.org/mailman.tar.gz">List.Org</a>
</ul>
<em>If you're using a command line FTP client, be sure to set the mode
to binary</em>. Once you've downloaded the source tarball, you can
unpack it with the following commands:
<blockquote>
<pre>
% cd /usr/local/src
% tar zxf mailman.tar.gz
</pre>
</blockquote>
Note that the file name may have the version number in it,
e.g. <code>mailman-2.1.tar.gz</code>.
<p>Mailman's tarball unpacks into a directory called
<code>mailman-xyz</code> where <em>xyz</em> is the version number.
Note also that some versions of <code>tar</code> don't accept the
<em>z</em> option. In that case, you'll need to use the
<code>gunzip</code> program like so:
<blockquote>
<pre>
% gunzip -c mailman.tar.gz | tar xf -
</pre>
</blockquote>
</td><!-- end of body cell -->
</tr><!-- end of sidebar/body row -->
</table><!-- end of page table -->
</body></html>
|