Proposals/Done/VERP Mail Bounces: Difference between revisions
From Mahara Wiki
< Proposals | Done
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This feature allows administrators to set up an email system to | This feature allows administrators to set up an email system to | ||
detect bounced emails and disable outgoing emails for accounts | detect bounced emails and disable outgoing emails for accounts | ||
Line 13: | Line 11: | ||
This feature requires setting up some config.php settings and some settings in the mail server. The examples below are based on a postfix and procmail installation on the server. | This feature requires setting up some config.php settings and some settings in the mail server. The examples below are based on a postfix and procmail installation on the server. | ||
===Standard setup=== | |||
== config.php settings == | == config.php settings == | ||
Line 38: | Line 37: | ||
* ^TO_AAA+.*@mahara.example.com | * ^TO_AAA+.*@mahara.example.com | ||
|"/usr/bin/php /var/www/mahara/lib/processemail.php" | |"/usr/bin/php /var/www/mahara/lib/processemail.php" | ||
===IMAP Setup=== | |||
This setup requires the setup of an imap server as well. The setup of that is out of scope of this document. | |||
It is assumed that your mail server or the delivery filter puts the bounce emails into a seperate IMAP mailbox (POP3 can also be used). | |||
== config.php settings == | |||
$cfg->bounces_handle = true; | |||
$cfg->bounceprefix = 'AAA+'; // config-defaults has 'AAA-' | |||
$cfg->bouncedomain = 'mahara.example.com'; | |||
$cfg->imapserver = 'mail.mahara.example.com'; | |||
$cfg->imapuser = 'bouncechecker'; | |||
$cfg->imappass = 'supersecret'; | |||
For more settings, like using mailboxes other than INBOX, or using POP3, see lib/config-defaults.php |
Revision as of 16:39, 3 Mayıs 2012
This feature allows administrators to set up an email system to detect bounced emails and disable outgoing emails for accounts that get large numbers of bounces.
The feature was introduced in commit id 9b9b2a5c25a078d0c6aab0e4fb6bed1c5eb112d2. This has been present since Mahara 1.3.
Some users may need the bug patch in review 1184
There is also a new addition to this feature in gerrit as change 1181 to allow polling of imap mailboxes for the returned bounces.
This feature requires setting up some config.php settings and some settings in the mail server. The examples below are based on a postfix and procmail installation on the server.
Standard setup
config.php settings
$cfg->bounces_handle = true; $cfg->bounceprefix = 'AAA+'; // config-defaults has 'AAA-' $cfg->bouncedomain = 'mahara.example.com';
Postfix setup
/etc/postfix/main.cf
Need the following in addition to any setup, note that if these lines exist, the values need to be added to existing lines
mydestination = mahara.example.com mailbox_command = /usr/bin/procmail RECIPIENT=$ORIGINAL_RECIPIENT
Then run the following as root
postfix reload
/etc/aliases
AAA: www-data
Then run the following as root
newaliases
/etc/procmailrc
:0 * ^TO_AAA+.*@mahara.example.com |"/usr/bin/php /var/www/mahara/lib/processemail.php"
IMAP Setup
This setup requires the setup of an imap server as well. The setup of that is out of scope of this document.
It is assumed that your mail server or the delivery filter puts the bounce emails into a seperate IMAP mailbox (POP3 can also be used).
config.php settings
$cfg->bounces_handle = true; $cfg->bounceprefix = 'AAA+'; // config-defaults has 'AAA-' $cfg->bouncedomain = 'mahara.example.com'; $cfg->imapserver = 'mail.mahara.example.com'; $cfg->imapuser = 'bouncechecker'; $cfg->imappass = 'supersecret';
For more settings, like using mailboxes other than INBOX, or using POP3, see lib/config-defaults.php