From db19156330bf6bbca9a6e13c5d85676e43be3b29 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 29 Jun 2010 22:11:09 -0400 Subject: 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. --- src/mailman/queue/docs/outgoing.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/mailman/queue/docs') 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: - 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 -- cgit v1.3.1