summaryrefslogtreecommitdiff
path: root/src/mailman/rest/docs/listconf.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Simplified the various list settings and remamed several things.Mark Sapiro2016-12-261-11/+6
|
* Added new list DMARC attributes to rest/listconf.py and updated tests.Mark Sapiro2016-11-011-0/+17
|
* REST: allow MailingList.info to be setAurélien Bompard2016-08-301-0/+2
|
* New template system. Closes #249Barry Warsaw2016-07-161-7/+6
| | | | | The new template system is introduced for API 3.1. See ``src/mailman/rest/docs/templates.rst`` for details.
* Fix #207Barry Warsaw2016-07-141-0/+4
| | | | | A list's ``moderator_password`` can be set via the REST API. Given by Andrew Breksa.
* Add NEWS and clean up.Barry Warsaw2016-03-031-1/+3
|
* Exposed goodbye_message_uri attribute through REST API.Harshit Bansal2016-03-031-0/+2
|
* Last cleanups.Barry Warsaw2016-02-291-8/+16
| | | | | | | | | * Remove an unused import. * Opportunistically remove ^Ls * Add a missing interface attribute. * Fix up some docstrings. * Rename a parameter in an interface for clarity. * Random code style cleanups.
* Review suggestions on the REST entry pointsAurélien Bompard2016-02-291-8/+8
| | | | | - validate HeaderMatch.chain values using Action - reformat the docs
* Review suggestions: rename the new index column to positionAurélien Bompard2016-02-291-10/+10
|
* Expose the header matches in the REST APIAurélien Bompard2016-02-291-0/+174
|
* Digests improvements:Barry Warsaw2015-12-191-0/+9
| | | | | | | * digestable -> digests_enabled * nondigestable: removed * Exposed digests_enabled, digest_send_periodic, digest_volume_frequency in REST.
* Many improvements to listconf.py.Barry Warsaw2015-12-171-4/+50
| | | | | | | | | | | | | | | | Closes #182 * Improve the documentation, especially in describing how to PUT and PATCH to list configuration subresources. * Improve the return codes for many error corner cases. Specifically, this makes more consistent when a 400 error is returned or a 404 error is returned. * Improve the handling of some weird corner cases, and add tests. * Fix the setting of error response reasons by not trying to .format() into a bytes object (which isn't allowed in Python 3). * Add lots of comments to the code, which improves the readability of all the twisty little turns. * 100% code coverage for listconf.py!
* Advertise the subscription policy in the REST APIAurélien Bompard2015-03-311-0/+3
|
* Back port from the py3 branch:Barry Warsaw2014-12-291-0/+237
* You can access the system configuration via the resource path ``/3.0/system/configuration/<section>``. This returns a dictionary with the keys being the section's variables and the values being their value from ``mailman.cfg`` as verbatim strings. You can get a list of all section names via ``/3.0/system/configuration`` which returns a dictionary containing the ``http_etag`` and the section names as a sorted list under the ``sections`` key. The system configuration resource is read-only.