summaryrefslogtreecommitdiff
path: root/src/mailman/utilities (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge from headAurélien Bompard2015-03-262-5/+61
|\
| * Additional fixes for importing from Mailman 2. Given by abompard.Barry Warsaw2015-03-252-5/+61
| |\
| | * Don't send welcome messages on importAurélien Bompard2015-02-212-5/+22
| | |
| | * Don't import invalid emailsAurélien Bompard2015-02-212-0/+29
| |/
* / Import the subscription_policy from Mailman2Aurélien Bompard2015-03-212-1/+29
|/
* We don't need the 'six' package any more.Barry Warsaw2015-01-043-7/+4
|
* Bump copyright years.Barry Warsaw2015-01-0416-16/+16
|
* Python 3.4 has no sys.exc_clear()Barry Warsaw2015-01-021-6/+0
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-2216-67/+21
|
* Trunk merge.Barry Warsaw2014-12-221-0/+2
|\
| * * Fixed getting non-ASCII filenames from RFC 2231 i18n'd messages. Given byBarry Warsaw2014-12-081-0/+2
| |\ | | | | | | | | | Aurélien Bompard. (LP: #1060951)
| | * Convert unicode instance testing to bytes instance testingAurélien Bompard2014-12-041-1/+1
| | |
| | * Do not auto-convert Message headers to unicodeAurélien Bompard2014-12-021-0/+2
| |/ | | | | | | Fixes: bug #1060951
* | test_import passes.Barry Warsaw2014-12-162-12/+17
| |
* | Fix some of the import tests. Python 2 str types seem to always unpickle asBarry Warsaw2014-12-162-38/+45
| | | | | | | | str types in Python 3.
* | Pass all command tests.Barry Warsaw2014-12-151-1/+1
| |
* | More test repair.Barry Warsaw2014-12-151-2/+3
| |
* | Port some of the commands.Barry Warsaw2014-12-131-2/+4
| |
* | CheckpointingBarry Warsaw2014-12-121-3/+2
| |
* | Make sure the X-Message-ID-Hash header value is a string.Barry Warsaw2014-12-111-1/+4
| |
* | Checkpointing.Barry Warsaw2014-11-304-10/+13
|/ | | | | | | | | | 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-173-52/+4
| | | | | * Remove some unused code * pragma: no cover
* * You no longer have to edit `src/mailman/testing/testing.cfg` to run theBarry Warsaw2014-11-091-0/+3
| | | | | | | | | | | test suite against PostgreSQL. See `src/mailman/docs/START.rst` for details. Also: * Test fixes. * Doc fixes. * PostgreSQL/model fixes.
* Tox-ify the test suite. Now you don't have to create a virtualenv separately.Barry Warsaw2014-11-072-10/+13
| | | | | | | | | | | 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-302-3/+14
|
* PostgreSQL support by Abhilash, cleaned by Barry.Barry Warsaw2014-09-271-0/+3
|\
| * Add support for postgresqlAbhilash Raj2014-09-251-0/+9
| | | | | | | | | | | | | | | | | | * revert changes in message_id_has encoding by barry * Change message_id_hash column to LargeBinary (from previously mistaken one i.e.unicode) * add missing import in database/types.py * fix a bug in database/Model.py, transaction has no method abort(), instead it is rollback()
* | Migrations, with cleanup by Barry.Barry Warsaw2014-09-271-1/+14
|/
* Clean up pass.Barry Warsaw2014-09-221-8/+7
|
* * fix the circular dependecy problem between User and AdressAbhilash Raj2014-09-191-0/+20
| | | | * fix almost all the errors relating to doctests
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-2810-15/+26
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* * Greatly improve the fidelity of the Mailman 2.1 list importer functionalityBarry Warsaw2014-04-143-22/+1066
|\ | | | | | | | | | | (i.e. ``mailman import21``). [Aurélien Bompard]. * Fixed a typo in the IMailingList interface.
| * IUserManager.create_address() is a better API to create unlinked addresses.Barry Warsaw2014-04-141-29/+5
| |
| * Trunk mergeBarry Warsaw2014-04-1416-16/+16
| |\ | |/ |/|
* | Bump copyright years.Barry Warsaw2014-01-0116-16/+16
| |
| * Aurélien Bompard's import-from-2.1 branch, with cleanup and fixes.Barry Warsaw2014-04-143-17/+1085
|/|
| * Minor pyflakes fixesAurélien Bompard2013-10-222-4/+3
| |
| * Merge from the main branchAurélien Bompard2013-10-222-83/+114
| |\ | |/ |/|
| * Text templates should be in UTF-8Aurélien Bompard2013-10-211-2/+19
| |
| * Handle acceptable_aliases being a list in the pickleAurélien Bompard2013-10-152-1/+17
| |
| * Better handling of mixed case email addressesAurélien Bompard2013-10-112-12/+65
| |
| * Handle 'local-part-only' acceptable aliasesAurélien Bompard2013-10-112-2/+22
| |
| * Don't change the mail_host when importingAurélien Bompard2013-10-112-4/+4
| |
| * Use the full language code in the configuration hintAurélien Bompard2013-10-112-6/+4
| |
| * Deal with non-ascii bans and aliasesAurélien Bompard2013-10-092-20/+34
| |
| * Make sure the imported preferred_language exists, and work around Python ↵Aurélien Bompard2013-10-082-3/+70
| | | | | | | | issue 9666
| * Some more unicode checks when importingAurélien Bompard2013-10-082-9/+39
| |
| * More unicode fixes in the import scriptAurélien Bompard2013-10-032-2/+35
| |
| * Strings are almost always bytestrings in the pickle, test for thatAurélien Bompard2013-10-032-58/+58
| |
| * Import most list parameters from the 2.1 pickleAurélien Bompard2013-09-302-3/+817
| |