summaryrefslogtreecommitdiff
path: root/src/mailman/queue/docs/outgoing.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename 'queue' directory to 'runners' since not all subprocesses run a queue.Barry Warsaw2011-05-291-413/+0
|
* More documentation cleanups.Barry Warsaw2010-09-141-6/+24
|
* No longer touch the Sender or Errors-To headers. We can no longer justifyBarry Warsaw2010-06-291-3/+1
| | | | | setting these based on RFC 5322, and modern MTAs no longer need us to do so for proper bounce processing.
* * Add REST interface for joining a mailing list.Barry Warsaw2009-12-281-0/+6
| | | | | | * add_member() now returns the newly created IMember. * Reorganized several exceptions and exposed them to the REST API. * Added NoSuchListError.
* Refactor VERP calculation so that it's now in the outgoing queue instead ofBarry Warsaw2009-11-271-22/+338
| | | | | | the to-outgoing handler. Putting it in the latter means that more delivery vectors can take advantages of the same mechanisms. to-outgoing is now really simple (but is it simple enough?).
* Expose 'transaction' as an alias for config.db in the doctest globs. ThisBarry Warsaw2009-07-211-1/+1
| | | | | | | | means commit() is now transaction.commit() in doctests. Add tests of extended domain creation, which exposes the need to unlock the database (via transaction.abort()) so that the foreground test process doesn't lock the background REST server process.
* De-u-literal-ify our doctests.Barry Warsaw2009-07-181-7/+8
|
* Move mailman.Message to mailman.email.Message. Rename Message.get_sender() toBarry Warsaw2009-02-091-1/+0
| | | | | | | | | Message.sender (property) and Message.get_senders() to Message.senders (another property). The semantics of .sender is slightly different too; it no longer consults config.mailman.use_envelope_sender. Add absolute_import and unicode_literals to Utils.py, and clean up a few imports.
* Push the source directory into a 'src' subdirectory so that zc.buildout worksBarry Warsaw2009-01-251-0/+75
correctly regardless of how it's used.