summaryrefslogtreecommitdiff
path: root/src/mailman/model/docs/mailinglist.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Finally, all doctests are named .rstBarry Warsaw2011-09-231-165/+0
|
* * The IMailingList attribute ``host_name`` has been renamed to ``mail_host``Barry Warsaw2011-06-161-1/+1
| | | | | for consistency. This changes the REST API for mailing list resources. (LP: #787599)
* Users subscribed to a mailing list via their preferred address show upBarry Warsaw2011-04-221-0/+11
| | | | | correctly in the REST API's list of members. This even correctly tracks changes in their preferred address.
* Users can now subscribe to a mailing list, and their preferred address willBarry Warsaw2011-04-171-0/+51
| | | | get delivery.
* Refactor .subscribe() from IAddress to IMailingList.Barry Warsaw2011-04-161-36/+65
|
* Many documentation fixes for better Sphinx output.Barry Warsaw2010-09-081-2/+3
|
* * Fix the bin/test -e/--stderr option to work with the currentBarry Warsaw2010-06-181-0/+73
zope.testrunner. Actually, divorce it from the latter and handle the sys.argv sequence ourselves. * Added IMailingList.get_roster() which returns the named roster (from a MemberRole enum). * The start of an IMailingList doctest. This needs much more detail. * Move the subscribe() function from membership.txt into the mailman.testing.helpers. * Added new REST interface for getting all the members of a roster for a specific mailing list: .../lists/<list>/roster/<role>. Note that <role> is the plural form of the MemberRole enum.