I would like to request Bounce Collection and Processing. A seperate email address to collect Bounces and then process them against the list or all lists they could have been sent from.

Comments

matt@antinomia’s picture

This is a critical function for any mass mailer. Should be implemented ASAP.

smunt’s picture

Add the following to your phplist/config.php

$message_envelope = 'bounce@example.org';
$bounce_protocol = 'pop';
$bounce_mailbox_host = 'pop.example.org';
$bounce_mailbox_user = 'bounce@example.org';
$bounce_mailbox_password = '12345';
$bounce_mailbox_port = "110/pop3/notls";

Also, set up a cronjob to process the bounces like this:

/bin/phplist -p processbounces -c ../../config.php

Alter the above code to your own particular configuration.

enjoy!