summaryrefslogtreecommitdiff
path: root/mailman/interfaces
diff options
context:
space:
mode:
authorBarry Warsaw2008-03-27 05:14:14 -0400
committerBarry Warsaw2008-03-27 05:14:14 -0400
commit17f286de64cb3373d68c4fefba6d9369b4e3f960 (patch)
tree5078531044f0574dfa340a389bd6d0bb9eea717f /mailman/interfaces
parentde9deb660c5d48a083f0c56916cca6aa0cb010b3 (diff)
downloadmailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.gz
mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.zst
mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.zip
Added a test of the OutgoingRunner, and subsequent changes to make it pass,
including: - MailingList.full_path -> IMailingList.data_path and implement this as a property on the MailingList object. - Fix the 'decorate' handler to work with the new member/user data model, instead of the old MemberAdaptor interface. - Fix a few problems with the smtp-direct handler, though this needs more work and tests. - Add some debug logging to both the test smtplistener and the SMTPServer proxy. Fix the proxy's consumption of messages from the thread queue. - Fix the smtplistener's calculation of the X-Peer header.
Diffstat (limited to 'mailman/interfaces')
-rw-r--r--mailman/interfaces/mailinglist.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/mailman/interfaces/mailinglist.py b/mailman/interfaces/mailinglist.py
index de63e84e5..a5f6a9e9a 100644
--- a/mailman/interfaces/mailinglist.py
+++ b/mailman/interfaces/mailinglist.py
@@ -260,3 +260,10 @@ class IMailingList(Interface):
Every mailing list has a processing pipeline that messages flow
through once they've been accepted.
""")
+
+ data_path = Attribute(
+ """The file system path to list-specific data.
+
+ An example of list-specific data is the temporary digest mbox file
+ that gets created to accumlate messages for the digest.
+ """)