summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/cleanse.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/handlers/cleanse.py')
-rw-r--r--src/mailman/handlers/cleanse.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/handlers/cleanse.py b/src/mailman/handlers/cleanse.py
index 4a8aac850..56add9ef7 100644
--- a/src/mailman/handlers/cleanse.py
+++ b/src/mailman/handlers/cleanse.py
@@ -17,14 +17,10 @@
"""Cleanse certain headers from all messages."""
-__all__ = [
- 'Cleanse',
- ]
-
-
import logging
from email.utils import formataddr
+from mailman import public
from mailman.core.i18n import _
from mailman.handlers.cook_headers import uheader
from mailman.interfaces.handler import IHandler
@@ -34,7 +30,7 @@ from zope.interface import implementer
log = logging.getLogger('mailman.post')
-
+@public
@implementer(IHandler)
class Cleanse:
"""Cleanse certain headers from all messages."""