summaryrefslogtreecommitdiff
path: root/src/mailman/mta/connection.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
|
* Clean up the mta directory.Barry Warsaw2016-03-251-9/+4
|
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-3/+0
|
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-1/+1
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* Bump copyright years.Barry Warsaw2014-01-011-1/+1
|
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* copybumpBarry Warsaw2012-01-011-1/+1
|
* LP: #490044 - Support SMTP AUTH.Barry Warsaw2011-01-021-1/+12
| | | | | Added smtp_user and smtp_pass options to the [mta] section to support logging into the SMTP server. All the underlying support is in Python's smtplib.
* Happy New Year.Barry Warsaw2011-01-011-1/+1
|
* Happy New Year.Barry Warsaw2010-01-011-1/+1
|
* * Refactor devmode settings, so that they live in one section.Barry Warsaw2009-12-121-2/+2
| | | | * Fix some tests.
* * Add a missing import.Barry Warsaw2009-12-121-3/+5
| | | | * Add some debug logging.
* Add a development mode setting which changes the basic behavior of mailman.Barry Warsaw2009-11-241-0/+5
| | | | | | | | | | | | | | The only thing it does currently is force the recipients in the low level connection code to a hard-coded address. Also: * Fix the inject command's --filename/-f argument * Make inject's LISTNAME required * When inject reads from stdin, capture C-c and print a nicer message * Extend the members command so that blank lines and lines starting with # are ignored. * members command should not fail when an address is already subscribed. Just warn and continue.
* Show that a max_sessions_per_connection == 0 means there's an unlimited numberBarry Warsaw2009-10-181-2/+4
| | | | of sessions per connection (or at least 10 <wink>).
* Show that session counts are kept and can be reset.Barry Warsaw2009-10-181-1/+1
|
* Infrastructure for testing the Connection class, and for counting the numberBarry Warsaw2009-10-181-0/+93
of session start and end events in the server.