5b710a872d
OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=b39225061fba4e1a50161e331c8ddb42
25 lines
477 B
Bash
25 lines
477 B
Bash
#!/bin/bash
|
|
|
|
nm()
|
|
{
|
|
NM=$( /usr/bin/mailq 2> /dev/null | tail -1 | /usr/bin/gawk '{ print $5 }' )
|
|
if [ "$NM" ]
|
|
then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
test -e /var/run/check_mail_queue.pid && exit;
|
|
echo $$ > /var/run/check_mail_queue.pid
|
|
while( nm )
|
|
do
|
|
/etc/init.d/postfix status || /etc/init.d/postfix start
|
|
sleep 10
|
|
/usr/sbin/postfix flush
|
|
done
|
|
/etc/init.d/postfix status && /etc/init.d/postfix stop
|
|
rm /var/run/check_mail_queue.pid
|
|
|