Version: 1.1, by rebelde
Developer Last Online: May 2015
Category: Administrative and Maintenance Tools -
Version: 4.2.x
Rating:
Released: 03-30-2014
Last Update: Never
Installs: 33
DB Changes Uses Plugins
Re-useable Code Additional Files Translations Is in Beta Stage
No support by the author.
What does the bounced email handler do?
It stops sending emails to addresses that are no longer valid. This helps keep your email from being marked as spam, and helps get your legitimate emails through spam filters as a result.
More technically:
It collects emails that "bounce" (are returned to you, the sender),
Counts them and marks those accounts with lots of bounces.
It stops sending "new post" notifications to those addresses.
To install:
Set up a separate email address to handle bounces, such as bounce@yourdomain.com.
(Do not use your normal email address. This modification will delete your other emails if you do!)
Upload the PHP file.
Install this plugin.
AdminCP > Settings > Options > Email Options: Set "Bounce email address" to the address in step 1.
AdminCP > Settings > Options > Bounced Email Handler: Fill in your settings
Test it:
- AdminCP > Scheduled Tasks > bounced_email_handler > Run Now to see if it is working.
- Check the email account to make sure that it is deleting the emails that it has imported.
Areas of improvement:
Find a way to stop sending other emails that shouldn't be sent such as forum subscription updates and birthday messages.
Add switch to not send PMs.
Add option to archive instead of delete emails for Gmail accounts.
Please fork this add-on for VB5 and other forum software. You have my permission!
I believe that one had problems. This is a newer version. Not sure what is going on though with an entire new release rather than just an update to the old one.
Seems to be working for me. I altered the cron task a bit though to increase the frequency but pull less mail each time. I have a few thousand of these addresses that need to be corrected..There are over 8,000 in my mail box now so I figure a little at a time will take care of them with in a few weeks and then I can lessen the frequency.
The only thing I want is a better log because using the scheduled task log sucks. I want to know what accounts have been marked. Right now the log just shows that it polled the mail from the mail account.
Also the pm thing..I will edit the php file myself but would be nice to have it in the panel as an option.
Pretty good though and I have needed something like this for years.
Thanks for testing it so quickly. The defaults were set for everyday usage. If you have a huge backlog of messages, you are going to want to do exactly what you are doing to "catch up". Once you get through the backlog, the defaults that are set make more sense.
The main table that keeps track of the bounces is beh_users. This query will show you who is being blocked:
select * from forum.beh_users where deliver_flag = '';
I've got 575 userids/emails in my list.
Let me know what you would like to see in a log and I might be able to get it added.