~sumanah/mailman/mailman

« back to all changes in this revision

Viewing changes to src/mailman/core/pipelines.py

  • Committer: Sumana Harihareswara
  • Date: 2015-01-08 21:35:58 UTC
  • mfrom: (7273.2.15 3.0)
  • Revision ID: sumanah@panix.com-20150108213558-65ym6553zj256z8p
mergeĀ fromĀ master

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008-2014 by the Free Software Foundation, Inc.
 
1
# Copyright (C) 2008-2015 by the Free Software Foundation, Inc.
2
2
#
3
3
# This file is part of GNU Mailman.
4
4
#
17
17
 
18
18
"""Built-in pipelines."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'BasePipeline',
25
22
    'OwnerPipeline',
32
29
 
33
30
import logging
34
31
 
35
 
from zope.interface import implementer
36
 
from zope.interface.verify import verifyObject
37
 
 
38
32
from mailman.app.bounces import bounce_message
39
33
from mailman.config import config
40
34
from mailman.core import errors
42
36
from mailman.interfaces.handler import IHandler
43
37
from mailman.interfaces.pipeline import IPipeline
44
38
from mailman.utilities.modules import find_components
 
39
from zope.interface import implementer
 
40
from zope.interface.verify import verifyObject
45
41
 
46
42
 
47
43
dlog = logging.getLogger('mailman.debug')
120
116
        'cleanse',
121
117
        'cleanse-dkim',
122
118
        'cook-headers',
 
119
        'subject-prefix',
123
120
        'rfc-2369',
124
121
        'to-archive',
125
122
        'to-digest',