From 24991d17919f2715a7f2e875d2fb7fe72e53efcf Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 16 Mar 2012 15:58:17 -0700 Subject: * Pipermail has been eradicated. * Configuration variable `[mailman]filtered_messages_are_preservable` controls whether messages which have their top-level `Content-Type` filtered out can be preserved in the `bad` queue by list owners. * Configuration section `[scrubber]` removed, as is the scrubber handler. This handler was essentially incompatible with Mailman 3 since it required coordination with Pipermail to store attachments on disk. * Schema additions: - mailinglist.filter_action --- src/mailman/interfaces/action.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/mailman/interfaces/action.py') diff --git a/src/mailman/interfaces/action.py b/src/mailman/interfaces/action.py index c7c79f7d8..9b3c1fbcc 100644 --- a/src/mailman/interfaces/action.py +++ b/src/mailman/interfaces/action.py @@ -20,6 +20,7 @@ __metaclass__ = type __all__ = [ 'Action', + 'FilterAction', ] @@ -33,3 +34,8 @@ class Action(Enum): discard = 2 accept = 3 defer = 4 + + +class FilterAction(Action): + forward = 5 + preserve = 6 -- cgit v1.2.3-70-g09d2