Bounce not "Delete all messages"

pcready.cl

New Member
I have the latest version installed.

The problem is that the boxes configured in "Bounce Servers" do not delete the emails once they are executed by crontab, example:

preview


This is the result, it does not delete anything.

preview


Thanks!
 
Those emails aren't even read, so most likely they haven't been processed yet.
Hello,

The mail record continues to grow and absolutely nothing has been deleted:

preview


What is the crontab that the delete has to execute?

Try with:

Code:
# Bounce handler, runs once at 10 minutes.
*/10 * * * * /usr/local/bin/php -q /home/pcreadys/public_html/mkmw/apps/console/console.php bounce-handler >/dev/null 2>&1


# Feedback loop handler, runs once at 20 minutes.
*/20 * * * * /usr/local/bin/php -q /home/pcreadys/public_html/mkmw/apps/console/console.php feedback-loop-handler >/dev/null 2>&1


# Delivery/Bounce processor, runs once at 3 minutes.
*/3 * * * * /usr/local/bin/php -q /home/pcreadys/public_html/mkmw/apps/console/console.php process-delivery-and-bounce-log >/dev/null 2>&1

And they do not work, what do I need to activate so that the emails are eliminated with the bounce?

Thanks.
 
Back
Top