summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Correct space in error messageAnirudh Dahiya2016-03-221-1/+1
|
* Caught exception at the right placeAnirudh Dahiya2016-03-221-5/+4
|
* Removed unnecessary commentsAnirudh Dahiya2016-03-221-9/+0
|
* Incorporates suggested changesAnirudh Dahiya2016-03-223-5/+28
|
* Add necessary comment explaining the modificationAnirudh Dahiya2016-03-221-0/+1
|
* Block duplicate Subscription requestsAnirudh Dahiya2016-03-221-1/+6
|
* Updated docsGurkirpal2016-03-221-0/+13
| | | | - instructions for mailman shell
* Remove an unused import.Barry Warsaw2016-03-221-1/+0
|
* A bit of pre-merge cleanup.Barry Warsaw2016-03-225-29/+46
| | | | | | | | | | | * Reorder some add_argument() parameters. * Reword some help text. * Reword some of the doctest language. * Clean up whitespace. * Minor coding style change in unittests. * Add another unittest. * Fix a docstring (not related to these change). * Add NEWS.
* Changed domain creation to True as defaultGurkirpal2016-03-223-6/+39
| | | | | | Added tests for domain option Updated docs for creating list from shell
* Close #208Barry Warsaw2016-03-208-14/+169
| | | | Don't let crashes in IArchiver plugins break handlers or runners.
* Document the pagination API.Barry Warsaw2016-03-162-1/+89
| | | | Closes #209
* Remove obsolete comment.Barry Warsaw2016-03-101-5/+0
|
* Add NEWS and modify a comment.Barry Warsaw2016-03-102-1/+3
|
* Implement review suggestionsAurélien Bompard2016-03-101-2/+2
|
* Protect the approved rule against unknown charsetsAurélien Bompard2016-03-102-7/+32
| | | | Fixes #203
* Fix cross-posting held on more than one list.Barry Warsaw2016-03-088-67/+86
| | | | | | | | | | | Closes #176 Also: * IMessageStore no longer raises a ValueError if the Message-ID already exists in the store; it just returns None. * The internal handle_message() function no longer takes a `preserve` argument, since messages are never removed from the IMessageStore.
* Fix #198 - duplicate owner subscription errorBarry Warsaw2016-03-053-1/+22
| | | | | | Trying to subscribe an address as a list owner (or moderator or nonmember) which is already subscribed with that role produces a server error.
* Add AlreadySubscribedError Exception for better error messageAnirudh Dahiya2016-03-051-0/+3
|
* Add NEWS and clean up.Barry Warsaw2016-03-033-24/+31
|
* Exposed goodbye_message_uri attribute through REST API.Harshit Bansal2016-03-033-0/+40
|
* NEWS.Barry Warsaw2016-02-291-0/+2
|
* Last cleanups.Barry Warsaw2016-02-298-88/+90
| | | | | | | | | * 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.
* Refine some coding style.Barry Warsaw2016-02-292-21/+27
| | | | | Slightly rewrite a test so that the event subscribers are more narrow. Opportunistically remove ^L
* Add a test for header-matches on missing lists.Barry Warsaw2016-02-293-15/+9
| | | | Also: Opportunistically remove ^L for better coverage results.
* Review suggestions on the REST entry pointsAurélien Bompard2016-02-292-15/+24
| | | | | - validate HeaderMatch.chain values using Action - reformat the docs
* Revert "Rename the HeaderMatch.chain column to action"Aurélien Bompard2016-02-2910-152/+38
| | | | This reverts commit 703fc135dfcd496a704562ddc263aa0f4f828de9.
* Review suggestions: improve unit testsAurélien Bompard2016-02-293-25/+45
|
* Review suggestions: rename the new index column to positionAurélien Bompard2016-02-296-112/+110
|
* Action-less header matches default to the site-wide antispam actionAurélien Bompard2016-02-292-3/+50
| | | | | Action.defer can't be used on header match links since the 'any' link that jumped to the configuration default happens before header matches.
* Use a better way to delete from a collectionAurélien Bompard2016-02-291-3/+2
|
* Fix test on PostgreSQLAurélien Bompard2016-02-291-21/+29
|
* Expose the header matches in the REST APIAurélien Bompard2016-02-294-1/+419
|
* Rename the HeaderMatch.chain column to actionAurélien Bompard2016-02-2910-37/+144
| | | | It makes it clearer what values are valid, and allows validation.
* Use a property for HeaderMatch.indexAurélien Bompard2016-02-292-16/+53
| | | | | Moving header matches up and down the stack is more transparent that way.
* The order of a mailing list's header matches is significantAurélien Bompard2016-02-299-68/+378
| | | | | | | Add a numerical index property to HeaderMatch objects, and change the HeaderMatchSet manager to take the order into account. Items can now be inserted and removed by index.
* Added extra "=" to make overcome underline and overline mismatchsaurav kumar2016-02-281-1/+1
|
* News.Barry Warsaw2016-02-271-0/+3
|
* Allow List-ID in decoration template URIs.Barry Warsaw2016-02-276-38/+88
| | | | | | | | Closes #196 In mailman: URIs (e.g. IMailingList.header_uri and .footer_uri), you used to be able to only use fqdn-listnames. But since List-IDs are more stable, let's allow those too. Silently deprecate using the fqdn-listname.
* Add a README for contributions.Barry Warsaw2016-02-261-0/+16
|
* Merge branch 'qsx/mailman-qsx/qmail' Closes !92Barry Warsaw2016-02-252-0/+82
|\
| * Add documentation on interfacing with qmailThomas Schneider2016-02-252-0/+82
|/ | | | Signed-off-by: Thomas Schneider <qsuscs@qsuscs.de>
* Handle AlreadySubscribedError in REST.Barry Warsaw2016-02-153-1/+23
| | | | | | | | When approving a subscription request via the REST API, for a user who is already a member, return an HTTP 409 Conflict code instead of the previous server traceback (and resulting HTTP 500 code). Closes #193
* Prevent moderation of messages held for a different list.Barry Warsaw2016-02-074-1/+32
| | | | Closes: #161
* Fix membership query for preferred addresses.Barry Warsaw2016-02-063-2/+36
| | | | | | | When multiple users are subscribed to a mailing list via their preferred address, too many results are returned from a membership query, resulting in an assertion error. Reported by Darrell Kresge. (Closes: #190)
* Add a set_preferred() helper.Barry Warsaw2016-02-069-61/+41
| | | | | This refactors the setting of a user's preferred address to the first in their list of linked addresses.
* Update coverage omit patterns.Barry Warsaw2016-01-311-2/+2
|
* Make sure we're using the right environment.Barry Warsaw2016-01-311-1/+1
|
* Refactor tox.ini for generated environments.Barry Warsaw2016-01-312-44/+19
|
* Super duper.Barry Warsaw2016-01-2630-68/+42
| | | | | * Python 3-ify super() calls. * Remove a bunch of obsolete exception classes.