summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mailman/app/docs/pipelines.rst19
-rw-r--r--src/mailman/core/pipelines.py1
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',