summaryrefslogtreecommitdiff
path: root/src/mailman/rest/docs/systemconf.rst
Commit message (Collapse)AuthorAgeFilesLines
* Add self_links to the system configuration resources.Barry Warsaw2017-05-231-0/+4
| | | | Closes #335
* Fixed broken tests.Mark Sapiro2017-02-191-0/+1
|
* Implement caching suffix list with in-tree fallback.Barry Warsaw2017-01-011-0/+1
| | | | | | | | Also: * Change doctest cleanups to be an ExitStack. * Added [dmarc]cache_lifetime setting. * Cleanup pass through dmarc-mitigation.rst. * Be sure the cached org domain file is cleaned up when the world is reset.
* Fix some fallout from the previous commit.Barry Warsaw2016-12-311-4/+10
|
* DMARC mitigations, part 1a.Mark Sapiro2016-10-311-0/+3
|
* New template system. Closes #249Barry Warsaw2016-07-161-0/+1
| | | | | The new template system is introduced for API 3.1. See ``src/mailman/rest/docs/templates.rst`` for details.
* Merge branch 'issue-109' into 'release-3.0'Barry Warsaw2015-06-021-0/+1
| | | | | | | | | | | Closes: #109 * Fix the traceback that occurred when trying to convert a `text/html` subpart to plaintext via the `mimedel` handler. Now, a configuration variable `[mailman]html_to_plain_text_command` in the `mailman.cfg` file defines the command to use. It defaults to `lynx`. (Closes: #109) See merge request !14
* Back port from the py3 branch:Barry Warsaw2014-12-291-0/+34
* 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.