summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Always pass the -C option to the subprocess.Barry Warsaw2015-01-041-2/+3
| | | |
* | | | It's possible $HOME isn't defined.Barry Warsaw2015-01-011-1/+1
| | | |
* | | | Post-release housekeeping.Barry Warsaw2014-12-302-3/+8
| | | |
* | | | Update version.Barry Warsaw2014-12-301-1/+1
| | | |
* | | | Documentation cleanup.Barry Warsaw2014-12-301-0/+1
| | | |
* | | | Back port from py3 branch:Barry Warsaw2014-12-291-0/+3
| | | | | | | | | | | | | | | | | | | | # Explicitly prevent flufl.lock from propagating its log messages # to its root logger, i.e. the console.
* | | | Back port from the py3 branch:Barry Warsaw2014-12-2911-17/+257
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | Back port from py3 branch:Barry Warsaw2014-12-294-13/+34
| | | | | | | | | | | | | | | | | | | | * The ``/3.0/system`` path is deprecated; use ``/3.0/system/versions`` to get the system version information.
* | | | Prep for releaseBarry Warsaw2014-12-291-1/+1
| |/ / |/| |
* | | * Fixed `AttributeError` on MIME digest messages. Given by Aurélien Bompard.Barry Warsaw2014-12-107-44/+196
|\ \ \ | | | | | | | | | | | | (LP: #1130696)
| * | | LP: #1130696 - AttributeError on .senderBarry Warsaw2014-12-106-43/+193
|/| | |
| * | | Make the MIMEDigester generate a subclass of MIMEMultipart with our additionsAurélien Bompard2014-12-098-60/+65
| | | | | | | | | | | | | | | | Fixes bug #1130696 (differently)
| * | | Handle the MIMEMultipart created by the DigestRunner properlyAurélien Bompard2014-11-304-3/+76
| |/ / | | | | | | | | | Fixes: bug #1130696
* | | /user sub-resource of the address documented by Aurélien Bompard.Barry Warsaw2014-12-091-11/+124
|\ \ \
| * | | Document the new /addresses/<email>/user resourceAurélien Bompard2014-12-091-10/+120
|/ / / | | | | | | | | | Fixes LP bug #1400520
* | | * Fixed getting non-ASCII filenames from RFC 2231 i18n'd messages. Given byBarry Warsaw2014-12-0814-43/+73
|\ \ \ | | | | | | | | | | | | Aurélien Bompard. (LP: #1060951)
| * | | Convert unicode instance testing to bytes instance testingAurélien Bompard2014-12-0412-14/+13
| | | |
| * | | Do not auto-convert Message headers to unicodeAurélien Bompard2014-12-0213-41/+68
| |/ / | | | | | | | | | Fixes: bug #1060951
* | | Updated a credit.Barry Warsaw2014-12-081-1/+1
| | |
* | | * The address resource now has an additional '/user' sub-resource which canBarry Warsaw2014-12-086-22/+329
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | be used to GET the address's linked user if there is one. This sub-resource also supports POST to link an unlinked address (with an optional 'auto_create' flag), and PUT to link the address to a different user. It also supports DELETE to unlink the address. (LP: #1312884) Given by Aurélien Bompard based on work by nicolask.
| * | | REST feature: create a user from an existing addressAurélien Bompard2014-12-085-21/+274
|/ / / | | | | | | | | | Fixes LP bug #1312884
* | | * Fixed messages without a `text/plain` part crashing the `Approved` rule.Barry Warsaw2014-12-033-2/+37
|\ \ \ | |/ / |/| | | | | Given by Aurélien Bompard. (LP: #1158721)
| * | Emails without a text/plain part crash the Approved ruleAurélien Bompard2014-11-302-1/+35
|/ / | | | | | | Fixes: bug #1158721
* | * Fix Unicode errors when a message being added to the digest has non-asciiBarry Warsaw2014-11-293-1/+66
|\ \ | | | | | | | | | | | | characters in its payload, but no Content-Type header defining a charset. Given by Aurélien Bompard. (LP: #1170347)
| * | Fix digest handler crashAurélien Bompard2014-11-252-1/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: #1170347 ------------- This line and the following will be ignored -------------- added: src/mailman/handlers/tests/test_to_digest.py modified: src/mailman/handlers/to_digest.py
* | | * Fixed Unicode errors in the digest runner and when sending messages to theBarry Warsaw2014-11-296-5/+158
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | site owner as a fallback. Given by Aurélien Bompard. (LP: #1130957). Also: * Convert some uses of the unicode() built-in to bytes.decode() in preparation for Python 3 and to eliminate some pyflakes errors. * Added LogFileMark.read() as a convenience method.
| * | | Fix some unicode issuesAurélien Bompard2014-11-274-2/+115
| |/ / | | | | | | | | | Fixes: 1130957
* | | Add comments and rewrite test a bit.Barry Warsaw2014-11-291-1/+5
| | |
* | | Remove debugging.Barry Warsaw2014-11-281-1/+0
| | |
* | | Repair broken test. Given by Aurélien Bompard.Barry Warsaw2014-11-281-9/+15
|\ \ \ | |/ / |/| |
| * | Fix a failing schemamanager testAurélien Bompard2014-11-271-8/+13
|/ /
* | Fix a few issues with `python2 -3` compatibility.Barry Warsaw2014-11-198-14/+15
| |
* | Improve coverage:Barry Warsaw2014-11-173-52/+4
| | | | | | | | | | * Remove some unused code * pragma: no cover
* | Remove debugging.Barry Warsaw2014-11-161-1/+0
| |
* | Make sure runner subprocesses get covered during `tox -e coverage`.Barry Warsaw2014-11-163-2/+16
| |
* | s/restish/falcon/Barry Warsaw2014-11-1529-608/+1010
|\ \
| * | Make it work with some pending refactoring in upstream falcon.Barry Warsaw2014-11-111-1/+2
| | |
| * | Trunk mergeBarry Warsaw2014-11-098-33/+60
| |\ \
| * \ \ Trunk merge.Barry Warsaw2014-11-0813-130/+125
| |\ \ \
| * | | | When we switch to tox, we'll get hash randomization, which breaks many tests.Barry Warsaw2014-11-064-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While I'm shipping a tox.ini, do not yet use tox to run the tests, unless you want to help fix the randomizations. In the meantime, I'm also adding a few randomization fixes, and updating to the latest falcon git trunk.
| * | | | Port to current Falcon git head.Barry Warsaw2014-11-022-17/+23
| | | | |
| * | | | Trunk merge.Barry Warsaw2014-11-0281-3632/+1281
| |\ \ \ \
| * | | | | Remove some unused code.Barry Warsaw2014-11-021-5/+0
| | | | | |
| * | | | | trunk mergeBarry Warsaw2014-09-231-3/+3
| |\ \ \ \ \
| * | | | | | Minor cleanups.Barry Warsaw2014-08-153-11/+7
| | | | | | |
| * | | | | | Refactor so that most modules don't need to import falcon, and so fewerBarry Warsaw2014-08-1412-215/+190
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unnecessary changes are needed for upstream falcon to support restish-ish traversal.
| * | | | | | Complete the conversion from restish to falcon, modulo a clean up pass. AllBarry Warsaw2014-08-1417-257/+352
| | | | | | | | | | | | | | | | | | | | | | | | | | | | REST tests pass. This requires an as yet unmerged internal change to falcon.
| * | | | | | Port users and part of members.Barry Warsaw2014-08-133-60/+92
| | | | | | |
| * | | | | | Lists and pagination are ported.Barry Warsaw2014-08-135-75/+152
| | | | | | |
| * | | | | | Domains are ported to falcon.Barry Warsaw2014-08-134-47/+63
| | | | | | |