diff options
| author | Aurélien Bompard | 2015-08-18 17:37:50 +0200 |
|---|---|---|
| committer | Aurélien Bompard | 2015-09-08 16:46:03 +0200 |
| commit | 18b4c4b06735c4b5998a8dfacce35c38137c0905 (patch) | |
| tree | 192e968ab4770e2630a38b392aa628e3bbc65bdb /src | |
| parent | ccedcb5f4efaeb14300626ca00b3baf34af6e6e5 (diff) | |
| download | mailman-18b4c4b06735c4b5998a8dfacce35c38137c0905.tar.gz mailman-18b4c4b06735c4b5998a8dfacce35c38137c0905.tar.zst mailman-18b4c4b06735c4b5998a8dfacce35c38137c0905.zip | |
Decorate bulk emails by default
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/app/docs/pipelines.rst | 19 | ||||
| -rw-r--r-- | src/mailman/core/pipelines.py | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/mailman/app/docs/pipelines.rst b/src/mailman/app/docs/pipelines.rst index eb59fcfc2..6678e0aff 100644 --- a/src/mailman/app/docs/pipelines.rst +++ b/src/mailman/app/docs/pipelines.rst @@ -57,8 +57,15 @@ etc. <mailto:test-join@example.com> List-Unsubscribe: <http://lists.example.com/listinfo/test@example.com>, <mailto:test-leave@example.com> + MIME-Version: 1.0 + Content-Type: text/plain; charset="us-ascii" + Content-Transfer-Encoding: 7bit <BLANKLINE> First post! + _______________________________________________ + Test mailing list + test@example.com + http://lists.example.com/listinfo/test@example.com <BLANKLINE> The message metadata has information about recipients and other stuff. @@ -92,6 +99,10 @@ processing queues. <BLANKLINE> First post! <BLANKLINE> + _______________________________________________ + Test mailing list + test@example.com + http://lists.example.com/listinfo/test@example.com >>> dump_msgdata(messages[0].msgdata) _parsemsg : False @@ -129,6 +140,10 @@ delivered to end recipients. <BLANKLINE> First post! <BLANKLINE> + _______________________________________________ + Test mailing list + test@example.com + http://lists.example.com/listinfo/test@example.com >>> dump_msgdata(messages[0].msgdata) _parsemsg : False @@ -160,3 +175,7 @@ There's now one message in the digest mailbox, getting ready to be sent. <BLANKLINE> First post! <BLANKLINE> + _______________________________________________ + Test mailing list + test@example.com + http://lists.example.com/listinfo/test@example.com diff --git a/src/mailman/core/pipelines.py b/src/mailman/core/pipelines.py index b929dd23f..2c0f7c221 100644 --- a/src/mailman/core/pipelines.py +++ b/src/mailman/core/pipelines.py @@ -118,6 +118,7 @@ class PostingPipeline(BasePipeline): 'cook-headers', 'subject-prefix', 'rfc-2369', + 'decorate', 'to-archive', 'to-digest', 'to-usenet', |
