summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/docs
diff options
context:
space:
mode:
authorBarry Warsaw2010-02-16 19:20:01 -0500
committerBarry Warsaw2010-02-16 19:20:01 -0500
commitb008112245064f5dbdbe4104c9a3e89694c75cfc (patch)
tree1b3fa89615f974372baa8fa79f2578ba651aac71 /src/mailman/pipeline/docs
parent006515005077b7b4b6fbb18d593800264ed307c4 (diff)
downloadmailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.tar.gz
mailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.tar.zst
mailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.zip
So long X-BeenThere, and thanks for all the fish.
Diffstat (limited to 'src/mailman/pipeline/docs')
-rw-r--r--src/mailman/pipeline/docs/cook-headers.txt30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/mailman/pipeline/docs/cook-headers.txt b/src/mailman/pipeline/docs/cook-headers.txt
index fcb66bdbf..5d078c342 100644
--- a/src/mailman/pipeline/docs/cook-headers.txt
+++ b/src/mailman/pipeline/docs/cook-headers.txt
@@ -45,36 +45,6 @@ But if there was no original sender, then the empty string will be saved.
<BLANKLINE>
-X-BeenThere header
-==================
-
-The X-BeenThere header is what Mailman uses to recognize messages that have
-already been processed by this mailing list. It's one small measure against
-mail loops.
-
- >>> msg = message_from_string("""\
- ... From: aperson@example.com
- ...
- ... A message of great import.
- ... """)
- >>> process(mlist, msg, {})
- >>> print msg['x-beenthere']
- _xtest@example.com
-
-Mailman appends X-BeenThere headers, so if there already is one in the
-original message, the posted message will contain two such headers.
-
- >>> msg = message_from_string("""\
- ... From: aperson@example.com
- ... X-BeenThere: another@example.com
- ...
- ... A message of great import.
- ... """)
- >>> process(mlist, msg, {})
- >>> sorted(msg.get_all('x-beenthere'))
- [u'_xtest@example.com', u'another@example.com']
-
-
Mailman version header
======================