diff options
| author | Barry Warsaw | 2016-05-03 23:23:19 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-05-03 23:23:19 -0400 |
| commit | 639aa81105c596786774352cd1666a98878c5a03 (patch) | |
| tree | ed173a56896450d7721ef27341b91805a3e53d84 /src | |
| parent | 201d92a40f09706cb30e6e94f375204a37122f86 (diff) | |
| download | mailman-639aa81105c596786774352cd1666a98878c5a03.tar.gz mailman-639aa81105c596786774352cd1666a98878c5a03.tar.zst mailman-639aa81105c596786774352cd1666a98878c5a03.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/interfaces/mailinglist.py | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py index 911d958f5..b5c0e5456 100644 --- a/src/mailman/interfaces/mailinglist.py +++ b/src/mailman/interfaces/mailinglist.py @@ -222,21 +222,23 @@ class IMailingList(Interface): This includes the IUsers who are both owners and moderators of the mailing list.""") + nonmembers = Attribute( + """A roster of all the nonmembers of the mailing list.""") + members = Attribute( - """An iterator over all the members of the mailing list, regardless of + """A roster of all the members of the mailing list, regardless of whether they are to receive regular messages or digests, or whether they have their delivery disabled or not.""") regular_members = Attribute( - """An iterator over all the IMembers who are to receive regular - postings (i.e. non-digests) from the mailing list, regardless of - whether they have their delivery disabled or not.""") + """An roster of all the IMembers who are to receive regular postings + (i.e. non-digests) from the mailing list, regardless of whether they + have their delivery disabled or not.""") digest_members = Attribute( - """An iterator over all the IMembers who are to receive digests of - postings to this mailing list, regardless of whether they have their - deliver disabled or not, or of the type of digest they are to - receive.""") + """A roster of all the IMembers who are to receive digests of postings + to this mailing list, regardless of whether they have their deliver + disabled or not, or of the type of digest they are to receive.""") subscription_policy = Attribute( """The policy for subscribing new members to the list.""") |
