Opened 17 years ago

Closed 16 years ago

Last modified 12 years ago

#5746 closed Uncategorized (wontfix)

Patch to add support for setting email return-path

Reported by: wreese@… Owned by: nobody
Component: Core (Mail) Version: dev
Severity: Normal Keywords: return-path email mail
Cc: Triage Stage: Design decision needed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Our Django application needs to send customized mail messages using
Variable Envelope Return Paths (VERPs - http://en.wikipedia.org/wiki/VERP ).
This simply means setting the return path of each outbound
email message to something unique, so that bounced messages can be
accurately tracked and handled.

In order to do this, developers need to be able to set the
"from_addr" parameter that is passed through to the sendmail() method
of the smtplib.SMTP class. Currently, Django automatically sets this
parameter based on the "From" header that is set on the EmailMessage
object.

The attached patch simply modifies the EmailMessage and
SMTPConnection classes to allow developers to manually set the return
path attribute, while safely defaulting to the "From" header (the
current default) if it is not supplied. The changes are minimal,
and tests and documentation have been written and supplied with the patch.

Attachments (1)

return_path.diff (6.7 KB ) - added by wreese@… 17 years ago.
Patch to add support for setting email return-path

Download all attachments as: .zip

Change History (5)

by wreese@…, 17 years ago

Attachment: return_path.diff added

Patch to add support for setting email return-path

comment:1 by Malcolm Tredinnick, 17 years ago

At the moment, I'm -1 on this. We made EmailMessage and SMTPConnection subclassable for exactly this reason: so that people with specialised requirements can make their own modifications without needing us to change the core.

Leaving open for a bit to think about it.

comment:2 by Malcolm Tredinnick, 17 years ago

Triage Stage: UnreviewedDesign decision needed

comment:3 by Jacob, 16 years ago

Resolution: wontfix
Status: newclosed

I agree with Malcolm, so I'm marking this wontfox.

comment:4 by Thomas Güttler, 12 years ago

Easy pickings: unset
Severity: Normal
Type: Uncategorized
UI/UX: unset

related #9214

Note: See TracTickets for help on using tickets.
Back to Top