diff options
Diffstat (limited to 'src/mailman/interfaces/mailinglist.py')
| -rw-r--r-- | src/mailman/interfaces/mailinglist.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mailman/interfaces/mailinglist.py b/src/mailman/interfaces/mailinglist.py index c08e257c1..4ef35c115 100644 --- a/src/mailman/interfaces/mailinglist.py +++ b/src/mailman/interfaces/mailinglist.py @@ -253,7 +253,7 @@ class IMailingList(Interface): preferred address that is explicitly subscribed with the same role. """ - # Posting history. + # Delivery. last_post_at = Attribute( """The date and time a message was last posted to the mailing list.""") @@ -262,6 +262,12 @@ class IMailingList(Interface): """A monotonically increasing integer sequentially assigned to each list posting.""") + personalize = Attribute( + """The type of personalization that is applied to postings.""") + + reply_goes_to_list = Attribute( + """Reply-To: header munging policy.""") + # Digests. digest_last_sent_at = Attribute( |
