diff options
author | Mark Sapiro <mark@msapiro.net> | 2014-10-16 22:09:49 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2014-10-16 22:09:49 -0700 |
commit | 15e0573756e18870b4f8ae7a26b272b792baf94d (patch) | |
tree | 531f6400760096a25f7c6908fb35780ffe6ccdfb /Mailman/Gui | |
parent | 851430b1cfbee6d92e4e1c0f110e4e66a1609d55 (diff) | |
download | mailman2-15e0573756e18870b4f8ae7a26b272b792baf94d.tar.gz mailman2-15e0573756e18870b4f8ae7a26b272b792baf94d.tar.xz mailman2-15e0573756e18870b4f8ae7a26b272b792baf94d.zip |
Implemented the ability to forward bounces to the list owner.
Diffstat (limited to 'Mailman/Gui')
-rw-r--r-- | Mailman/Gui/Bounce.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Mailman/Gui/Bounce.py b/Mailman/Gui/Bounce.py index 1dc837fc..e559dcc8 100644 --- a/Mailman/Gui/Bounce.py +++ b/Mailman/Gui/Bounce.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2004 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2014 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -142,6 +142,15 @@ class Bounce(GUIBase): <a href="?VARHELP=autoreply/autoresponse_admin_text">autoresponse message</a> for email to the -owner and -admin address.""")), + ('bounce_notify_owner_on_bounce_increment', mm_cfg.Toggle, + (_('No'), _('Yes')), 0, + _("""Should Mailman notify you, the list owner, when bounces + cause a member's bounce score to be incremented?"""), + _("""Setting this value to <em>Yes</em> will cause Mailman to + send a notice including a copy of the bounce message to the list + owners whenever a bounce increments a member's bounce score but + doesn't cause a disable or a probe to be sent.""")), + ('bounce_notify_owner_on_disable', mm_cfg.Toggle, (_('No'), _('Yes')), 0, _("""Should Mailman notify you, the list owner, when bounces |