diff options
| author | Barry Warsaw | 2010-12-29 23:54:08 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2010-12-29 23:54:08 -0500 |
| commit | 534e90fea33c52585c74fa9127cca8b70178d5e0 (patch) | |
| tree | 3a5d4088b5af1a4b310dffba711389ac67792dd2 /src/mailman/interfaces/mailinglist.py | |
| parent | a31184862fc52a3c38059f832d533b137135c1f9 (diff) | |
| download | mailman-534e90fea33c52585c74fa9127cca8b70178d5e0.tar.gz mailman-534e90fea33c52585c74fa9127cca8b70178d5e0.tar.zst mailman-534e90fea33c52585c74fa9127cca8b70178d5e0.zip | |
Diffstat (limited to 'src/mailman/interfaces/mailinglist.py')
| -rw-r--r-- | src/mailman/interfaces/mailinglist.py | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py index 882afaf42..54cfa9d24 100644 --- a/src/mailman/interfaces/mailinglist.py +++ b/src/mailman/interfaces/mailinglist.py @@ -459,20 +459,24 @@ class IMailingList(Interface): # Moderation. - default_member_moderation = Attribute( - """Default moderation flag for new mailing list members. + default_member_action = Attribute( + """The default action to take for postings from members. - When an address is subscribed to the mailing list, this boolean - attribute sets the initial moderation flag value. When a member's - posts are moderated, they must first be approved by the mailing list - owner or moderator. + When an address is subscribed to the mailing list, this attribute sets + the initial moderation action (as an `Action`). When the action is + `Action.defer` (the default), then normal posting decisions are made. + When the action is `Action.accept`, the postings are accepted without + any other checks. """) - member_moderation_action = Attribute( - """Action to take when a moderated member posts to the mailing list. + default_nonmember_action = Attribute( + """The default action to take for postings from nonmembers. - This is applied when the sender is a member of the mailing list and - has their `is_moderated` flag set. + When a nonmember address posts to the mailing list, this attribute + sets the initial moderation action (as an `Action`). When the action + is `Action.defer` (the default), then normal posting decisions are + made. When the action is `Action.accept`, the postings are accepted + without any other checks. """) |
