summaryrefslogtreecommitdiff
path: root/src/mailman/interfaces/mailinglist.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/interfaces/mailinglist.py')
-rw-r--r--src/mailman/interfaces/mailinglist.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py
index 23d21cd34..44e015435 100644
--- a/src/mailman/interfaces/mailinglist.py
+++ b/src/mailman/interfaces/mailinglist.py
@@ -495,6 +495,19 @@ class IMailingList(Interface):
without any other checks.
""")
+ # Bounces.
+
+ forward_unrecognized_bounces_to = Attribute(
+ """What to do when a bounce contains no recognizable addresses.
+
+ This is an enumeration which specifies what to do with such bounce
+ messages. They can be discarded, forward to the list owner, or
+ forwarded to the site owner.
+ """)
+
+ process_bounces = Attribute(
+ """Whether or not the mailing list processes bounces.""")
+
class IAcceptableAlias(Interface):