diff options
| author | Barry Warsaw | 2008-02-08 08:12:04 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2008-02-08 08:12:04 -0500 |
| commit | 3bf12766c0e16a2259a77f76b3a98b457788b5d3 (patch) | |
| tree | d0a6a3e8285372e4a816fff842673fe39ba96bdd /Mailman/docs/chains.txt | |
| parent | 0478757a09b4173937d75103fa96444b6b085300 (diff) | |
| download | mailman-3bf12766c0e16a2259a77f76b3a98b457788b5d3.tar.gz mailman-3bf12766c0e16a2259a77f76b3a98b457788b5d3.tar.zst mailman-3bf12766c0e16a2259a77f76b3a98b457788b5d3.zip | |
Rename 'prep queue' to 'pipeline queue'.
Add a pipeline queue runner.
Diffstat (limited to 'Mailman/docs/chains.txt')
| -rw-r--r-- | Mailman/docs/chains.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/docs/chains.txt b/Mailman/docs/chains.txt index 433ee8e8e..16bebfbba 100644 --- a/Mailman/docs/chains.txt +++ b/Mailman/docs/chains.txt @@ -269,10 +269,10 @@ processed and sent on to the list membership. >>> print 'LOG:', fp.read() LOG: ... ACCEPT: <first> - >>> prepq = Switchboard(config.PREPQUEUE_DIR) - >>> len(prepq.files) + >>> pipelineq = Switchboard(config.PIPELINEQUEUE_DIR) + >>> len(pipelineq.files) 1 - >>> qmsg, qdata = prepq.dequeue(prepq.files[0]) + >>> qmsg, qdata = pipelineq.dequeue(pipelineq.files[0]) >>> print qmsg.as_string() From: aperson@example.com To: _xtest@example.com @@ -306,7 +306,7 @@ the Hold handler from previous versions of Mailman. u'The built-in moderation chain.' The previously created message is innocuous enough that it should pass through -all default rules. This message will end up in the prep queue. +all default rules. This message will end up in the pipeline queue. >>> file_pos = fp.tell() >>> from Mailman.app.chains import process @@ -315,7 +315,7 @@ all default rules. This message will end up in the prep queue. >>> print 'LOG:', fp.read() LOG: ... ACCEPT: <first> - >>> qmsg, qdata = prepq.dequeue(prepq.files[0]) + >>> qmsg, qdata = pipelineq.dequeue(pipelineq.files[0]) >>> print qmsg.as_string() From: aperson@example.com To: _xtest@example.com |
