This script uses qshape to print out the details of deferred emails in Postfix. Useful when monitoring delivery issues.
#!/bin/sh
while :
do
sudo qshape deferred
sleep 30
done
A little soapbox for me to stand on and rant from.
This script uses qshape to print out the details of deferred emails in Postfix. Useful when monitoring delivery issues.
#!/bin/sh
while :
do
sudo qshape deferred
sleep 30
done