summaryrefslogtreecommitdiff
path: root/src/mailman/runners/incoming.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-03-07 15:45:09 -0800
committerBarry Warsaw2012-03-07 15:45:09 -0800
commiteb41bebb04cb8158d46d130ba63ca2044f2ccbb1 (patch)
tree05a0ac5a50bcdf9074b8e3ae50a86aa704eda33a /src/mailman/runners/incoming.py
parent4ca5055eea7c521e620de8ceeff6fa538b7a0c0b (diff)
downloadmailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.tar.gz
mailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.tar.zst
mailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.zip
* Mailing lists get multiple chains and pipelines. For example, normal
postings go through the `posting_chain` while messages to owners to through `owners_chain`. The default `built-in` chain is renamed to `default-posting-chain` while the `built-in` pipeline is renamed `default-posting-pipeline`. * Schema changes: - start_chain -> posting_chain - pipeline -> posting_pipeline
Diffstat (limited to '')
-rw-r--r--src/mailman/runners/incoming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/runners/incoming.py b/src/mailman/runners/incoming.py
index c306ddcf1..7072f9bcc 100644
--- a/src/mailman/runners/incoming.py
+++ b/src/mailman/runners/incoming.py
@@ -61,6 +61,6 @@ class IncomingRunner(Runner):
pass
config.db.commit()
# Process the message through the mailing list's start chain.
- process(mlist, msg, msgdata, mlist.start_chain)
+ process(mlist, msg, msgdata, mlist.posting_chain)
# Do not keep this message queued.
return False