summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBarry Warsaw2016-05-03 23:23:19 -0400
committerBarry Warsaw2016-05-03 23:23:19 -0400
commit639aa81105c596786774352cd1666a98878c5a03 (patch)
treeed173a56896450d7721ef27341b91805a3e53d84 /src
parent201d92a40f09706cb30e6e94f375204a37122f86 (diff)
downloadmailman-639aa81105c596786774352cd1666a98878c5a03.tar.gz
mailman-639aa81105c596786774352cd1666a98878c5a03.tar.zst
mailman-639aa81105c596786774352cd1666a98878c5a03.zip
Diffstat (limited to 'src')
-rw-r--r--src/mailman/interfaces/mailinglist.py18
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.""")