diff options
| author | Barry Warsaw | 2009-02-04 07:00:56 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-02-04 07:00:56 -0500 |
| commit | b93b16bea10a1983bd784d56703518134f538d08 (patch) | |
| tree | 14c0e17243908377f903eb7af73cdfff72ebf53c /src/mailman/queue/incoming.py | |
| parent | bbbe644f21ef956e0b94a2d7ba9dd73e97846e3d (diff) | |
| download | mailman-b93b16bea10a1983bd784d56703518134f538d08.tar.gz mailman-b93b16bea10a1983bd784d56703518134f538d08.tar.zst mailman-b93b16bea10a1983bd784d56703518134f538d08.zip | |
Diffstat (limited to 'src/mailman/queue/incoming.py')
| -rw-r--r-- | src/mailman/queue/incoming.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mailman/queue/incoming.py b/src/mailman/queue/incoming.py index 1adda6629..877255662 100644 --- a/src/mailman/queue/incoming.py +++ b/src/mailman/queue/incoming.py @@ -26,6 +26,14 @@ prepared for delivery. Rejections, discards, and holds are processed immediately. """ +from __future__ import absolute_import, unicode_literals + +__metaclass__ = type +__all__ = [ + 'IncomingRunner', + ] + + from mailman.core.chains import process from mailman.queue import Runner @@ -35,6 +43,7 @@ class IncomingRunner(Runner): """The incoming queue runner.""" def _dispose(self, mlist, msg, msgdata): + """See `IRunner`.""" if msgdata.get('envsender') is None: msgdata['envsender'] = mlist.no_reply_address # Process the message through the mailing list's start chain. |
