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/interfaces/mailinglist.py | |
| parent | 4ca5055eea7c521e620de8ceeff6fa538b7a0c0b (diff) | |
| download | mailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.tar.gz mailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.tar.zst mailman-eb41bebb04cb8158d46d130ba63ca2044f2ccbb1.zip | |
Diffstat (limited to 'src/mailman/interfaces/mailinglist.py')
| -rw-r--r-- | src/mailman/interfaces/mailinglist.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py index 4bd47a180..a3e6e443a 100644 --- a/src/mailman/interfaces/mailinglist.py +++ b/src/mailman/interfaces/mailinglist.py @@ -383,11 +383,20 @@ class IMailingList(Interface): # Processing. - pipeline = Attribute( - """The name of this mailing list's processing pipeline. + posting_chain = Attribute( + """This mailing list's moderation chain. + + When messages are posted to a mailing list, it first goes through a + moderation chain to determine whether the message will be accepted. + This attribute names a chain for postings, which must exist. + """) + + posting_pipeline = Attribute( + """This mailing list's posting pipeline. Every mailing list has a processing pipeline that messages flow - through once they've been accepted. + through once they've been accepted for posting to the mailing list. + This attribute names a pipeline for postings, which must exist. """) data_path = Attribute( |
