summaryrefslogtreecommitdiff
path: root/src/mailman/mta/bulk.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/mta/bulk.py')
-rw-r--r--src/mailman/mta/bulk.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/mta/bulk.py b/src/mailman/mta/bulk.py
index 65dfea0bb..1741e0d4c 100644
--- a/src/mailman/mta/bulk.py
+++ b/src/mailman/mta/bulk.py
@@ -17,11 +17,7 @@
"""Bulk message delivery."""
-__all__ = [
- 'BulkDelivery',
- ]
-
-
+from mailman import public
from mailman.mta.base import BaseDelivery
@@ -38,7 +34,7 @@ CHUNKMAP = dict(
)
-
+@public
class BulkDelivery(BaseDelivery):
"""Deliver messages to the MSA in as few sessions as possible."""