chiark / gitweb /
Upstream qmail 1.01
[qmail] / INSTALL.boot
CommitLineData
2117e02e
MW
1The qmail daemons have to be restarted whenever your system reboots.
2Meanwhile, sendmail doesn't have to be started any more. Here's what you
3should do.
4
5Find sendmail in your boot scripts. It's usually in either /etc/rc or
6/etc/init.d/sendmail. It looks like
7
8 sendmail -bd -q15m
9
10-q15m means it should run the queue every 15 minutes; you may see a
11different number. Comment out this line, and replace it with
12
13 env - PATH="/var/qmail/bin:$PATH" \
14 csh -cf 'qmail-start ./Mailbox splogger qmail &'
15
16That's it. (Make sure you include the ./ and the &.)