gh-66788: Add the imap4-utf-7 codec#153149
Open
serhiy-storchaka wants to merge 1 commit into
Open
Conversation
Implement the modified UTF-7 encoding used for international IMAP4
mailbox names (RFC 3501, section 5.1.3). It differs from UTF-7:
"&" is the shift character ("&-" encodes a literal "&"), "," replaces
"/" in the Base64 alphabet, and all non-printable-ASCII characters are
Base64-encoded.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Documentation build overview
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the
imap4-utf-7codec, implementing the modified UTF-7 encoding used for international IMAP4 mailbox names (RFC 3501, section 5.1.3).It differs from UTF-7 (RFC 2152):
&(not+) is the shift character, and&-encodes a literal&;,is used instead of/in the modified Base64 alphabet;&) are represented directly, so all other characters, including other controls, are Base64-encoded.This is the codec dependency of gh-49555 (international mailbox names in
imaplib). Automatic encoding/decoding of mailbox names inimaplibitself is a separate question, left for later — modern servers accept raw UTF-8 names viaUTF8=ACCEPT(RFC 6855), and auto-conversion has non-trivial API implications.🤖 Generated with Claude Code