Process bounces from Gmail in phpList Updated on August 16, 2021 by InMotion Hosting Contributor 1 Minutes, 24 Seconds to Read In this article I’ll go over how you can process your phpList bounces when you are using a Gmail account as your bounce address. If you’ve ready my previous article on handling bounces with phpList, that covers how you can use phpList to process bounce-back messages for the mailings you’ve been sending out via phpList. That works perfectly fine if you’re simply using an email address such as [email protected] on your own server. However if you happen to be trying to use Gmail as your bounce processing email address, this requires some additional manual modifications in order for phpList to be able to successfully connect to Gmail’s servers. Modify phpList files to connect to Gmail In order to correctly connect to Gmail’s servers the following files need to be modified. I would recommend taking a look at our guide on how do I edit a file on my server if you are unsure how to navigate to these files to modify them. /config/config.php $message_envelope = ‘[email protected]’; $bounce_protocol = ‘pop’; $bounce_mailbox_host = ‘pop.gmail.com’; $bounce_mailbox_user = ‘[email protected]’; $bounce_mailbox_password = ‘PassWord’; Then you need to make sure that the following line: $bounce_mailbox_port = “110/pop3”; Gets updated to: $bounce_mailbox_port = “995/pop3/ssl“; /admin/processbounces.php This bit of code: function processPop ($server,$user,$password) { $port = $GLOBALS[“bounce_mailbox_port”]; if (!$port) { $port = ‘110/pop3/notls’; } Needs to be updated to: function processPop ($server,$user,$password) { $port = $GLOBALS[“bounce_mailbox_port”]; #if (!$port) { #$port = ‘110/pop3/notls’; $port = ‘995/pop3/ssl’; #} You should now understand how you can configure phpList so that it can process bounces for you from a Gmail account. Share this Article InMotion Hosting Contributor Content Writer InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals! More Articles by InMotion Hosting Related Articles How to Import Email Accounts and Forwarders into cPanel How to Configure Mailbox Quota Notifications How to Login to SquirrelMail SpamAssassin: Fighting Spam How to Fix the “550 No Such User Here” Email Error How to Setup an Email AutoResponder in cPanel Logging into Horde How to Change an Email Password in cPanel and Webmail How to Purchase InMotion Hosting Professional Email in AMP What is MailChannels and How it Benefits You