summaryrefslogtreecommitdiff
path: root/src/mailman/runners
diff options
context:
space:
mode:
authorBarry Warsaw2012-03-23 13:49:46 -0400
committerBarry Warsaw2012-03-23 13:49:46 -0400
commit2e7565996c4f63d17028e04e133c851e4c935a2b (patch)
treeec89e17890ff867e609c5ec427b4d32c2841411d /src/mailman/runners
parent56ebf923ff311b4c1d195d46c04cadca4940b638 (diff)
downloadmailman-2e7565996c4f63d17028e04e133c851e4c935a2b.tar.gz
mailman-2e7565996c4f63d17028e04e133c851e4c935a2b.tar.zst
mailman-2e7565996c4f63d17028e04e133c851e4c935a2b.zip
Rename the member recipients calculating handler to make way for the owner
recipients handler.
Diffstat (limited to 'src/mailman/runners')
-rw-r--r--src/mailman/runners/docs/outgoing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/runners/docs/outgoing.rst b/src/mailman/runners/docs/outgoing.rst
index b1ffb06a0..d8963ae00 100644
--- a/src/mailman/runners/docs/outgoing.rst
+++ b/src/mailman/runners/docs/outgoing.rst
@@ -33,7 +33,7 @@ move messages to the 'retry queue' for handling delivery failures.
Normally, messages would show up in the outgoing queue after the message has
been processed by the rule set and pipeline. But we can simulate that here by
injecting a message directly into the outgoing queue. First though, we must
-call the ``calculate-recipients`` handler so that the message metadata will be
+call the ``member-recipients`` handler so that the message metadata will be
populated with the list of addresses to deliver the message to.
::
@@ -47,7 +47,7 @@ populated with the list of addresses to deliver the message to.
... """)
>>> msgdata = {}
- >>> handler = config.handlers['calculate-recipients']
+ >>> handler = config.handlers['member-recipients']
>>> handler.process(mlist, msg, msgdata)
>>> outgoing_queue = config.switchboards['out']