If you are sending the mails 1 recipients per 1 email then I'll suggest you
to do:
#!/bin/sh
cd /var/spool/exim/input
for msgid in `ls -R| awk -F - '{print $1"-"$2"-"$3}'`
do
/usr/sbin/exim -v -M $msgid &
sleep 0.5
done
Or if you want to try it one by one delivery (more polite way):
#!/bin/sh
cd /var/spool/exim/input
for msgid in `ls -R| awk -F - '{print $1"-"$2"-"$3}'`
do
/usr/sbin/exim -v -M $msgid
done
--
SubZero
-----Original Message-----
From: exim-users-bounces@??? [
mailto:exim-users-bounces@exim.org] On
Behalf Of ppp2005@???
Sent: Wednesday, June 22, 2005 2:40 AM
To: exim-users@???
Subject: [exim] FAST QUEUE DELIVERY!!
Importance: High
Hi all,
Every Thursday and Friday we send a mailing to our customers (9000 users).
To not load much the server we use the QUEUE_ONLY option, but messages late
hours and hours to be delivered, is very slow.
Are there any way to sent them all faster like postfix do?
Regards,
Paulo