On Mon, Jan 27, 2003 at 12:37:01PM +0300, maxes@??? wrote:
> As say man for mailq, "mailq -Ac is equal to sendmail -bp"
> In FreeBSD, for example, some "periodic" scripts check
> queue with command "mailq -Ac". Because exim not support key -Ac, I
> nedd change this scripts
You obviously didn't read those scripts carefully enough.
> (/etc/periodic/daily/440.status-mailq /etc/periodic/daily/500.queuerun)
> to -bp. If I have one host, changhe not take much time, but for more
> host it annoyed. What's about new fake options ?
Which part of:
cat << EOF >> /etc/periodic.conf
daily_submit_queuerun="NO"
daily_status_include_submit_mailq="NO"
EOF
or
HOST="host1 host2 host3"
for i in $HOST ; do \
ssh root@$i \
'
echo daily_submit_queuerun=\"NO\" >> /etc/periodic.conf ;
echo daily_status_include_submit_mailq=\"NO\" >> /etc/periodic.conf
' ; \
done
doesn't work for you?
MBM
--
Matthew Byng-Maddick <mbm@???> http://colondot.net/