diff options
| author | Barry Warsaw | 2010-08-11 09:02:29 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2010-08-11 09:02:29 -0400 |
| commit | b291fddae14ea2e52874e643bac263375b00d708 (patch) | |
| tree | 5d6d00400deed2e4beb2d2879feff92eea79d313 /src/mailman/interfaces/mailinglist.py | |
| parent | 74be65c1ac8fcfd206ad26d9c61b8521fc86bda2 (diff) | |
| download | mailman-b291fddae14ea2e52874e643bac263375b00d708.tar.gz mailman-b291fddae14ea2e52874e643bac263375b00d708.tar.zst mailman-b291fddae14ea2e52874e643bac263375b00d708.zip | |
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( |
