summaryrefslogtreecommitdiff
path: root/src/mailman/commands/cli_withlist.py
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright years.Barry Warsaw2017-01-041-1/+1
|
* Use `atpublic` for @public instead of internal copy.Barry Warsaw2016-11-291-1/+1
|
* Fixes ipython singleton class 'InteractiveShellEmbed' initializationamitt0012016-10-101-2/+2
|
* Rebase mailman/mailman!180 and cleanup # noqaBarry Warsaw2016-07-281-1/+1
|
* Pay down some minor tech-debt.Barry Warsaw2016-05-011-2/+2
|
* Use contextlib.suppress() where appropriate.Barry Warsaw2016-04-301-4/+2
|
* Fix #228Barry Warsaw2016-04-221-7/+37
| | | | | | | | ``mailman shell`` now supports readline history if you set the ``[shell]history_file`` variable in mailman.cfg. Also, many useful names are pre-populated in the namespace of the shell. (Closes: #228) With test coverage.
* Fix compatibility with IPython 4.Barry Warsaw2016-04-101-8/+43
|
* Fix regression with default banner.Barry Warsaw2016-04-091-1/+2
| | | | Closes #225
* Don't use `flake8: noqa`.Barry Warsaw2016-04-011-1/+1
| | | | | | | This suppresses all errors in the file. Use `noqa`, although pep8 doesn't honor this for all errors. There may be a plugin which helps.
* Clean up the commands subdirectory.Barry Warsaw2016-03-241-9/+4
|
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* Documentation fixes, given by Abhilash Raj.Barry Warsaw2015-03-131-5/+5
|\
| * change bin/mailman to mailman everwhere in docsAbhilash Raj2015-03-121-5/+5
|/
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-6/+3
|
* Bump copyright years.Barry Warsaw2014-01-011-1/+1
|
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* General code cleanup.Barry Warsaw2012-04-251-25/+24
| | | | | | | | - Add explicit dependency on zope.event in setup.py. - Use Python 3 compatible syntax for specifying that a class implements an interface, i.e. the @implementer class decorator. - print_function futures. - Whitespace normalization.
* Merge branch from Andrea Crotti, with a minor cleanup:Barry Warsaw2012-04-061-2/+1
|\ | | | | | | | | - There is a tiny change from the version already merged, because now sys.ps1 is set correctly even if readline/rlcompleter fail..
| * the sys prompt can be safely set also when the readline import failsAndrea Crotti2012-03-141-2/+2
| |
* | Schema change. After discussion at Pycon, we decided to change "real_name" toBarry Warsaw2012-03-151-2/+2
|/ | | | | | | | | | | "display_name" across the board. * `IMailingList.real_name` -> `IMailingList.display_name` * `IUser.real_name` -> `IUser.display_name` * `IAddress.real_name` -> `IAddress.display_name` * Schema changes: - real_name -> display_name (mailinglist, user, address)
* Move the interact module to a better sub-package location.Barry Warsaw2012-03-131-1/+1
|
* * IPython support in `bin/mailman shell` contributed by Andrea Crotti.Barry Warsaw2012-03-121-3/+28
|\ | | | | | | (LP: #949926).
| * various small fixes after reviewing with Barry WarsawAndrea Crotti2012-03-131-11/+9
| |
| * - add a section in the schema to customize the shellAndrea Crotti2012-03-131-2/+30
|/ | | | | - add the shell completion to the python shell - add an option to use IPython, disabled by default
* copybumpBarry Warsaw2012-01-011-1/+1
|
* * `bin/mailman shell` is an alias for `withlist`.Barry Warsaw2011-11-131-0/+8
|
* Happy New Year.Barry Warsaw2011-01-011-1/+1
|
* Fix the obvious errors identified by pyflakes. Skip false positives (mostlyBarry Warsaw2010-10-081-1/+0
| | | | | due to _() interpolation) and a few other problems that did not have immediately obvious fixes.
* Happy New Year.Barry Warsaw2010-01-011-1/+1
|
* Moderate testing of the withlist command.Barry Warsaw2009-11-261-1/+1
|
* Flesh out --runBarry Warsaw2009-11-261-12/+40
|
* * The start of a conversion of bin/withlist to bin/mailman withlistBarry Warsaw2009-11-261-0/+187
* Add lots of debugging to the SMTP delivery chain * Move the VERP calculation to the deliver module, since this is the central place we do delivery. For example, when it was in to_outgoing, other routes for injecting the message may not have been verp'd. to_outgoing is now really simple.