diff options
Diffstat (limited to 'src/mailman/interfaces/mailinglist.py')
| -rw-r--r-- | src/mailman/interfaces/mailinglist.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py index fba5d71ef..98f538dbe 100644 --- a/src/mailman/interfaces/mailinglist.py +++ b/src/mailman/interfaces/mailinglist.py @@ -110,6 +110,18 @@ class IMailingList(Interface): """Flag specifying whether to include any RFC 2369 header, including the RFC 2919 List-ID header.""") + anonymous_list = Attribute( + """Flag controlling whether messages to this list are anonymized. + + Anonymizing messages is not perfect, however setting this flag removes + the sender of the message (in the From, Sender, and Reply-To fields) + and replaces these with the list's posting address. + """) + + advertised = Attribute( + """Advertise this mailing list when people ask for an overview of the + available mailing lists.""") + # Contact addresses posting_address = Attribute( |
