summaryrefslogtreecommitdiff
path: root/Mailman/docs/calc-recips.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reorganize doctests, moving handler documentation into Mailman/handlers/docs.Barry Warsaw2008-01-241-101/+0
| | | | Rename all handlers to be more PEP 8 friendly, i.e. lowercased.
* More doctest fixes.Barry Warsaw2007-11-081-11/+11
|
* Fix two more doctestsBarry Warsaw2007-11-071-9/+2
|
* Reorganize the enums so that they live in the most appropriate interface. TheBarry Warsaw2007-10-091-1/+1
| | | | only constant left in Mailman.constants is now actually a constant.
* Refactor IDatabase interface so that the user_manager, list_manager,Barry Warsaw2007-08-021-7/+8
| | | | | message_store, and pendings 'databases' hang off the IDatabase object attached to the config object. For IPending, no adaptation is necessary.
* Refactor tests to get consistent clean up behavior. The clean up sectionsBarry Warsaw2007-06-221-23/+0
| | | | | have been removed from the .txt files and instead added to the test harness, which all doctests now use.
* Convert the tests for the CalcRecips handler to doc tests. There areBarry Warsaw2007-06-191-0/+130
some XXX's in the doc test because digest recipients aren't tested (though those may go in a different doctest), and neither are urgent messages. This latter is for the same reason that the Approved handler is not yet tested; which password do you use in that header? The CalcRecips tests would also seem the natural place to test the receive_list_copy preference, but that actually gets processed in the AvoidDuplicates handler, so it isn't tested here. Add delivery_status (of type enum DeliveryStatus) to preferences. I'm not entirely sure that's the right place for it, but it lets me finish converting the test for now. Expose the rest of the preferences through the IMember interface.