-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#gh-75705: Set unixfrom envelope in mailbox._mboxMMDF #107117
#gh-75705: Set unixfrom envelope in mailbox._mboxMMDF #107117
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I slightly polished the PR.
LGTM.
Thanks @matthieucan for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11, 3.12. |
…GH-107117) (cherry picked from commit 76108b8) Co-authored-by: Matthieu Caneill <[email protected]>
GH-115098 is a backport of this pull request to the 3.12 branch. |
…GH-107117) (cherry picked from commit 76108b8) Co-authored-by: Matthieu Caneill <[email protected]>
GH-115099 is a backport of this pull request to the 3.11 branch. |
|
…7117) (GH-115098) (cherry picked from commit 76108b8) Co-authored-by: Matthieu Caneill <[email protected]>
…7117) (GH-115099) (cherry picked from commit 76108b8) Co-authored-by: Matthieu Caneill <[email protected]>
The
mailbox._mboxMMDF
mailbox format does not set theunixfrom
envelope, i.e. theFrom foo@bar blah
header.from
andunixfrom
are tracked separately in this class.#75705