Upstream qmail 1.01
[qmail] / INSTALL.boot
1 The qmail daemons have to be restarted whenever your system reboots.
2 Meanwhile, sendmail doesn't have to be started any more. Here's what you
3 should do.
4
5 Find 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
11 different 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
16 That's it. (Make sure you include the ./ and the &.)