summaryrefslogtreecommitdiff
path: root/src/mailman/utilities/tests/test_import.py
Commit message (Collapse)AuthorAgeFilesLines
* Enforce a stricter coding style.Barry Warsaw2017-01-261-12/+12
|
* Bump copyright years.Barry Warsaw2017-01-041-1/+1
|
* Merge branch 'master' into py36Barry Warsaw2016-11-281-0/+2
|\
| * Merge branch 'fix-import-header-filters' into 'master' Barry Warsaw2016-11-261-0/+2
| |\ | | | | | | | | | | | | | | | | | | Cover another header match import case This branch just covers one more import conversion case seen in the wild. See merge request !163
| | * Cover another header match import caseAurélien Bompard2016-07-191-0/+2
| | |
* | | Handle a Python 3.6 difference in interact().Barry Warsaw2016-11-251-3/+4
|/ / | | | | | | | | | | | | Also: * Fix a regexp that 3.6 raises an exception on. * Remove a deprecated attribute from passlib.cfg.
* / Added unsubscribe instructions to list:member:generic:footer.txtFrancesco Ariis2016-08-251-2/+4
|/
* New template system. Closes #249Barry Warsaw2016-07-161-33/+45
| | | | | The new template system is introduced for API 3.1. See ``src/mailman/rest/docs/templates.rst`` for details.
* Allow fall backs for moderation actions.Barry Warsaw2016-04-011-1/+1
| | | | | | | | | The `moderation_action` for members and nonmember can now be ``None`` which signals falling back to the appropriate list default action, e.g. `default_member_action` and `default_nonmember_action`. Given by Aurélien Bompard. Closes #189
* Import the unmoderated members with action 'defer'Aurélien Bompard2016-03-311-3/+3
|
* Members and nonmembers moderation action fallbackAurélien Bompard2016-03-311-2/+3
| | | | | | | | Members and nonmember's moderation action should be None by default, and in that case the moderation rule should fallback to the mailing list's default action. Fixes: #189
* Clean up the utilities directory.Barry Warsaw2016-03-251-80/+69
|
* Revert "Rename the HeaderMatch.chain column to action"Aurélien Bompard2016-02-291-3/+3
| | | | This reverts commit 703fc135dfcd496a704562ddc263aa0f4f828de9.
* Rename the HeaderMatch.chain column to actionAurélien Bompard2016-02-291-3/+3
| | | | It makes it clearer what values are valid, and allows validation.
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* Coverage improvements.Barry Warsaw2015-12-291-3/+7
| | | | | | | | * Boost coverage. * Don't report coverage on the test modules. * In one test, when acquiring the lock, set a timeout. Hopefully this will eliminate the occasional test deadlock. * Fix a buglet in wrap()
* Clean up pass through abompard's branch.Barry Warsaw2015-10-201-28/+38
|
* Use and interface for the set of header_matchesAurélien Bompard2015-10-201-7/+18
|
* Implement changes from the reviewAurélien Bompard2015-10-201-1/+18
|
* Adapt the code and the tests to the new HeaderMatch objectAurélien Bompard2015-10-201-4/+9
|
* Convert header_filter_rules from 2.1 to header_matchesAurélien Bompard2015-10-201-0/+109
|
* Core no longer depends on the standalone `mock` module. (Closes: #146)Barry Warsaw2015-09-221-1/+1
|
* Do a cleansing pass on abompard's branch.Barry Warsaw2015-06-241-18/+20
|
* Better import of a member's moderation flagAurélien Bompard2015-06-171-3/+21
|
* Only keep regexps in the *_these_nonmembers propertyAurélien Bompard2015-06-171-0/+9
|
* Import: handle the '*_these_nonmembers' parametersAurélien Bompard2015-06-171-0/+27
|
* Fix import of the default_member_moderation valueAurélien Bompard2015-06-171-0/+11
|
* * Mailing list subscription policy work flow has been completely rewritten.Barry Warsaw2015-04-151-1/+30
|\ | | | | | | | | | | It now properly supports email verification and subscription confirmation by the user, and approval by the moderator using unique tokens. ``IMailingList`` objects now have a ``subscription_policy`` attribute.
| * Merge from headAurélien Bompard2015-03-261-0/+43
| |\ | |/ |/|
| * Import the subscription_policy from Mailman2Aurélien Bompard2015-03-211-1/+26
| |
* | Additional fixes for importing from Mailman 2. Given by abompard.Barry Warsaw2015-03-251-0/+43
|\ \ | |/ |/|
| * Don't send welcome messages on importAurélien Bompard2015-02-211-0/+11
| |
| * Don't import invalid emailsAurélien Bompard2015-02-211-0/+24
|/
* We don't need the 'six' package any more.Barry Warsaw2015-01-041-3/+2
|
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-7/+8
|
* test_import passes.Barry Warsaw2014-12-161-4/+8
|
* Fix some of the import tests. Python 2 str types seem to always unpickle asBarry Warsaw2014-12-161-27/+30
| | | | str types in Python 3.
* Checkpointing.Barry Warsaw2014-11-301-7/+8
| | | | | | | | | | By using `six` I think I have most of the imports squared away. There's probably still uses of `unicode` built-ins that need fixing. The idea is to first get the test suite running (which it doesn't yet), and then to fix tests. There's a bug in lazr.config which requires us to patch it for now.
* Improve coverage:Barry Warsaw2014-11-171-6/+3
| | | | | * Remove some unused code * pragma: no cover
* Tox-ify the test suite. Now you don't have to create a virtualenv separately.Barry Warsaw2014-11-071-2/+3
| | | | | | | | | | | To do this, we have to handle random test ordering, since tox explicitly sets PYTHONHASHSEED. That's a good thing for the future Python 3 port. Removed `mailman conf -t/--sort`; now the output is always sorted. RFC 2369 headers are now sorted before being added. etag repr dicts are sorted using pprint.pformat().
* Merge abompard's fixes to the importer for encode_ascii_prefixes.Barry Warsaw2014-10-301-0/+10
|
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-6/+17
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* IUserManager.create_address() is a better API to create unlinked addresses.Barry Warsaw2014-04-141-29/+5
|
* Trunk mergeBarry Warsaw2014-04-141-1/+1
|\
| * Bump copyright years.Barry Warsaw2014-01-011-1/+1
| |
* | Aurélien Bompard's import-from-2.1 branch, with cleanup and fixes.Barry Warsaw2014-04-141-6/+725
|\ \ | |/ |/|
| * Minor pyflakes fixesAurélien Bompard2013-10-221-2/+1
| |
| * Merge from the main branchAurélien Bompard2013-10-221-80/+107
| |\ | |/ |/|
| * Text templates should be in UTF-8Aurélien Bompard2013-10-211-2/+19
| |