Knowledge Base

How Can We Help?

Handle Bounce Back Emails in phpList

You are here:

PhpList is an open source software, which is used for managing the mailing list. This is written in PHP and uses MYSQL database to store the data.  Using phpList we can send an email to a large number of subscribers. Here we are discussing how phpList handles bounce back email. Bounce back will occur when any one of the users in the list doesn’t receive the message.

 Configure phpList to handle bounce

1) Login to cPanel and navigate to ‘File Manager’ and navigate to ‘config’ file where you installed the installed phpList.

2) Edit the config.php file, search for message_envelops, uncomment the $message_envelope line and enter the email address you would like to send mail from. Could be like this.

$message_envelope = ‘listbounces@yourdomain’;

You also need to update the bounce_mailbox_user, and bounce_mailbox_password sections with your valid email credential as well. After editing you need to save the file. Then the config.php should look like the below.

$message_envelope = ‘[email protected]’;

# Handling bounces. Check README.bounces for more info

# This can be ‘pop’ or ‘mbox’

$bounce_protocol = ‘pop’;

# set this to 0, if you set up a cron to download bounces regularly by using the

# commandline option. If this is 0, users cannot run the page from the web

# frontend. Read README.commandline to find out how to set it up on the

# commandline

define (“MANUALLY_PROCESS_BOUNCES”,1);

# when the protocol is pop, specify these threes

$bounce_mailbox_host = ‘localhost’;

$bounce_mailbox_user = ‘[email protected]’;

$bounce_mailbox_password = ‘MyPa$$W0rd’;

 

Process bounces in phpList

1) Login to your phpList admin panel.

Bounce Back In Phplist

2) Navigate to ‘Process Bounces’ under System section.

Bounce Back In Phplist

3) You can monitor bounce backs from ‘View Bounces’.

Bounce Back In Phplist

Leave a Comment