~xav0989/ubuntu/vivid/mailman/ubuntu-logo

« back to all changes in this revision

Viewing changes to doc/mailman-install/node42.html

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2008-04-24 19:30:49 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080424193049-jy5fa9tus40tjbmn
Tags: 1:2.1.10-2
Apply upstream patch to fix regression in cmd_subscribe
so that email subscribe to the -subscribe or -join address or the
-request address with a bare 'subscribe' command results in the message
being shunted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
2
<html>
 
3
<head>
 
4
<link rel="STYLESHEET" href="mailman-install.css" type='text/css' />
 
5
<link rel="first" href="mailman-install.html" title='GNU mailman - installation Manual' />
 
6
<link rel='last' href='about.html' title='About this document...' />
 
7
<link rel='help' href='about.html' title='About this document...' />
 
8
<link rel="next" href="node43.html" />
 
9
<link rel="prev" href="node41.html" />
 
10
<link rel="parent" href="front.html" />
 
11
<link rel="next" href="node43.html" />
 
12
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
13
<meta name='aesop' content='information' />
 
14
<title>10 Start the Mailman qrunner</title>
 
15
</head>
 
16
<body>
 
17
<div class="navigation">
 
18
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
 
19
<table align="center" width="100%" cellpadding="0" cellspacing="2">
 
20
<tr>
 
21
<td class='online-navigation'><a rel="prev" title="9 set up cron"
 
22
  href="node41.html"><img src='previous.png'
 
23
  border='0' height='32'  alt='Previous Page' width='32' /></a></td>
 
24
<td class='online-navigation'><a rel="parent" title="Front Matter"
 
25
  href="front.html"><img src='up.png'
 
26
  border='0' height='32'  alt='Up one Level' width='32' /></a></td>
 
27
<td class='online-navigation'><a rel="next" title="11 check the hostname"
 
28
  href="node43.html"><img src='next.png'
 
29
  border='0' height='32'  alt='Next Page' width='32' /></a></td>
 
30
<td align="center" width="100%">GNU Mailman - Installation Manual</td>
 
31
<td class='online-navigation'><img src='blank.png'
 
32
  border='0' height='32'  alt='' width='32' /></td>
 
33
<td class='online-navigation'><img src='blank.png'
 
34
  border='0' height='32'  alt='' width='32' /></td>
 
35
<td class='online-navigation'><img src='blank.png'
 
36
  border='0' height='32'  alt='' width='32' /></td>
 
37
</tr></table>
 
38
<div class='online-navigation'>
 
39
<b class="navlabel">Previous:</b>
 
40
<a class="sectref" rel="prev" href="node41.html">9 Set up cron</a>
 
41
<b class="navlabel">Up:</b>
 
42
<a class="sectref" rel="parent" href="front.html">Front Matter</a>
 
43
<b class="navlabel">Next:</b>
 
44
<a class="sectref" rel="next" href="node43.html">11 Check the hostname</a>
 
45
</div>
 
46
<hr /></div>
 
47
</div>
 
48
<!--End of Navigation Panel-->
 
49
 
 
50
<h1><a name="SECTION0011000000000000000000">
 
51
10 Start the Mailman qrunner</a>
 
52
</h1>
 
53
 
 
54
<p>
 
55
Mailman depends on a process called the ``qrunner'' to delivery all
 
56
email messages it sees.  You must start the qrunner by executing the following
 
57
command from the <var>$prefix</var> directory:
 
58
 
 
59
<p>
 
60
<div class="verbatim"><pre>
 
61
    % bin/mailmanctl start
 
62
</pre></div>
 
63
 
 
64
<p>
 
65
You probably want to start Mailman every time you reboot your system.  Exactly
 
66
how to do this depends on your operating system.  If your OS supports the
 
67
<b class="program">chkconfig</b> command (e.g. RedHat and Mandrake Linuxes) you can
 
68
do the following (as root, from the Mailman install directory):
 
69
 
 
70
<p>
 
71
<div class="verbatim"><pre>
 
72
    % cp scripts/mailman /etc/init.d/mailman
 
73
    % chkconfig --add mailman
 
74
</pre></div>
 
75
 
 
76
<p>
 
77
Note that <span class="file">/etc/init.d</span> may be <span class="file">/etc/rc.d/init.d</span> on some systems.
 
78
 
 
79
<p>
 
80
On Gentoo Linux, you can do the following:
 
81
 
 
82
<p>
 
83
<div class="verbatim"><pre>
 
84
    % cp scripts/mailman /etc/init.d/mailman
 
85
    % rc-update add mailman default
 
86
</pre></div>
 
87
 
 
88
<p>
 
89
On Debian, you probably want to use:
 
90
 
 
91
<p>
 
92
<div class="verbatim"><pre>
 
93
    % update-rc.d mailman defaults
 
94
</pre></div>
 
95
 
 
96
<p>
 
97
For <span class="Unix">Unix</span>es that don't support <b class="program">chkconfig</b>, you might try the
 
98
following set of commands:
 
99
 
 
100
<p>
 
101
<div class="verbatim"><pre>
 
102
    % cp scripts/mailman /etc/init.d/mailman
 
103
    % cp misc/mailman /etc/init.d
 
104
    % cd /etc/rc.d/rc0.d
 
105
    % ln -s ../init.d/mailman K12mailman
 
106
    % cd ../rc1.d
 
107
    % ln -s ../init.d/mailman K12mailman
 
108
    % cd ../rc2.d
 
109
    % ln -s ../init.d/mailman S98mailman
 
110
    % cd ../rc3.d
 
111
    % ln -s ../init.d/mailman S98mailman
 
112
    % cd ../rc4.d
 
113
    % ln -s ../init.d/mailman S98mailman
 
114
    % cd ../rc5.d
 
115
    % ln -s ../init.d/mailman S98mailman
 
116
    % cd ../rc6.d
 
117
    % ln -s ../init.d/mailman K12mailman
 
118
</pre></div>
 
119
 
 
120
<p>
 
121
 
 
122
<div class="navigation">
 
123
<div class='online-navigation'>
 
124
<p></p><hr />
 
125
<table align="center" width="100%" cellpadding="0" cellspacing="2">
 
126
<tr>
 
127
<td class='online-navigation'><a rel="prev" title="9 set up cron"
 
128
  href="node41.html"><img src='previous.png'
 
129
  border='0' height='32'  alt='Previous Page' width='32' /></a></td>
 
130
<td class='online-navigation'><a rel="parent" title="Front Matter"
 
131
  href="front.html"><img src='up.png'
 
132
  border='0' height='32'  alt='Up one Level' width='32' /></a></td>
 
133
<td class='online-navigation'><a rel="next" title="11 check the hostname"
 
134
  href="node43.html"><img src='next.png'
 
135
  border='0' height='32'  alt='Next Page' width='32' /></a></td>
 
136
<td align="center" width="100%">GNU Mailman - Installation Manual</td>
 
137
<td class='online-navigation'><img src='blank.png'
 
138
  border='0' height='32'  alt='' width='32' /></td>
 
139
<td class='online-navigation'><img src='blank.png'
 
140
  border='0' height='32'  alt='' width='32' /></td>
 
141
<td class='online-navigation'><img src='blank.png'
 
142
  border='0' height='32'  alt='' width='32' /></td>
 
143
</tr></table>
 
144
<div class='online-navigation'>
 
145
<b class="navlabel">Previous:</b>
 
146
<a class="sectref" rel="prev" href="node41.html">9 Set up cron</a>
 
147
<b class="navlabel">Up:</b>
 
148
<a class="sectref" rel="parent" href="front.html">Front Matter</a>
 
149
<b class="navlabel">Next:</b>
 
150
<a class="sectref" rel="next" href="node43.html">11 Check the hostname</a>
 
151
</div>
 
152
</div>
 
153
<hr />
 
154
<span class="release-info">Release 2.1, documentation updated on April 21, 2008.</span>
 
155
</div>
 
156
<!--End of Navigation Panel-->
 
157
 
 
158
</body>
 
159
</html>