~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to src/mailman/runners/archive.py

  • Committer: Barry Warsaw
  • Date: 2012-03-17 16:54:26 UTC
  • mfrom: (7112.2.2 nopipermail)
  • Revision ID: barry@list.org-20120317165426-gh7r1owr9n8p0gvh
Merge the Pipermail eradication branch.  The scrubber is also removed.

 * 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

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Archive runner."""
19
19
 
 
20
from __future__ import absolute_import, print_function, unicode_literals
 
21
 
20
22
__metaclass__ = type
21
23
__all__ = [
22
24
    'ArchiveRunner',