diff options
| author | Barry Warsaw | 2012-03-07 15:45:09 -0800 |
|---|---|---|
| committer | Barry Warsaw | 2012-03-07 15:45:09 -0800 |
| commit | eb41bebb04cb8158d46d130ba63ca2044f2ccbb1 (patch) | |
| tree | 05a0ac5a50bcdf9074b8e3ae50a86aa704eda33a /src/mailman/styles/default.py | |
| parent | 4ca5055eea7c521e620de8ceeff6fa538b7a0c0b (diff) | |
| download | mailman-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/styles/default.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mailman/styles/default.py b/src/mailman/styles/default.py index 623bf1bc1..95672c62c 100644 --- a/src/mailman/styles/default.py +++ b/src/mailman/styles/default.py @@ -211,11 +211,12 @@ from: .*@uplinkpro.com # is that they will get all messages, and they will not have an entry # in this dictionary. mlist.topics_userinterest = {} - # The processing chain that messages coming into this list get + # The processing chain that messages posted to this mailing list get # processed by. - mlist.start_chain = 'built-in' - # The default pipeline to send accepted messages through. - mlist.pipeline = 'built-in' + mlist.posting_chain = 'default-posting-chain' + # The default pipeline to send accepted messages through to the + # mailing list's members. + mlist.posting_pipeline = 'default-posting-pipeline' def match(self, mailing_list, styles): """See `IStyle`.""" |
