summaryrefslogtreecommitdiff
path: root/src/mailman/queue/docs/outgoing.txt
diff options
context:
space:
mode:
authorBarry Warsaw2010-06-29 22:11:09 -0400
committerBarry Warsaw2010-06-29 22:11:09 -0400
commitdb19156330bf6bbca9a6e13c5d85676e43be3b29 (patch)
tree792f46e7cf0e5cc3c1ac3a693915cf4c4455168d /src/mailman/queue/docs/outgoing.txt
parentb3e874703bce97c121eb97dd9776da15a8b90070 (diff)
downloadmailman-db19156330bf6bbca9a6e13c5d85676e43be3b29.tar.gz
mailman-db19156330bf6bbca9a6e13c5d85676e43be3b29.tar.zst
mailman-db19156330bf6bbca9a6e13c5d85676e43be3b29.zip
No longer touch the Sender or Errors-To headers. We can no longer justify
setting these based on RFC 5322, and modern MTAs no longer need us to do so for proper bounce processing.
Diffstat (limited to 'src/mailman/queue/docs/outgoing.txt')
-rw-r--r--src/mailman/queue/docs/outgoing.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mailman/queue/docs/outgoing.txt b/src/mailman/queue/docs/outgoing.txt
index cdabdb795..73a9200ef 100644
--- a/src/mailman/queue/docs/outgoing.txt
+++ b/src/mailman/queue/docs/outgoing.txt
@@ -76,8 +76,6 @@ Every recipient got the same copy of the message.
To: test@example.com
Subject: My first post
Message-ID: <first>
- Sender: test-bounces@example.com
- Errors-To: test-bounces@example.com
X-Peer: ...
X-MailFrom: test-bounces@example.com
X-RcptTo: cperson@example.com, bperson@example.com, aperson@example.com
@@ -117,7 +115,7 @@ recipients.
>>> from operator import itemgetter
>>> def show_headers(messages):
... for message in sorted(messages, key=itemgetter('x-rcptto')):
- ... print message['X-RcptTo'], message['Sender']
+ ... print message['X-RcptTo'], message['X-MailFrom']
>>> show_headers(messages)
aperson@example.com test-bounces@example.com