Hi,
On Tue, Apr 27, 2010 at 02:05:12PM +0400, Proskurin Kirill wrote:
...
> >> /usr/sbin/exim4 -bd
> >> /usr/sbin/exim4 -oP /var/run/exim4/eximqr.pid -q5m
fist stop exim, then start the above manually.
Is it really faster?
> >> How make this in FreeBSD? RC script seems to don`t know anything about
> >> this.
you could i.e.
1.
set exim_enable="NO"
in /etc/rc.conf
2.
insert something like
if [ -x /usr/sbin/exim4 ]
then
/usr/sbin/exim4 -bd
/usr/sbin/exim4 -oP /var/run/exim4/eximqr.pid -q5m
fi
into /etc/rc.local
(use your valid pathes!)
--
Regards
Frank Heydlauf