blob: d7d74bc91c9a273c7bc81e98a7b5712167c0371c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""The encryption-aware outgoing runner"""
from mailman.core.runner import Runner
from public import public
@public
class OutgoingRunner(Runner):
def _dispose(self, mlist, msg, msgdata):
"""See `IRunner`."""
pass
|