summaryrefslogtreecommitdiffstats
path: root/Doc/library/email.rst
diff options
context:
space:
mode:
authorDenis Laxalde <denis@laxalde.org>2021-04-26 01:38:12 (GMT)
committerGitHub <noreply@github.com>2021-04-26 01:38:12 (GMT)
commitcb5c802dcf8851663c4eac5d73f968f626a3a1dc (patch)
treeabbfa2162458e5283a5d88b356e4e082d6f4b4dc /Doc/library/email.rst
parent0d930f108cb8ba66f54197175c1fba0c38253e4a (diff)
downloadcpython-cb5c802dcf8851663c4eac5d73f968f626a3a1dc.zip
cpython-cb5c802dcf8851663c4eac5d73f968f626a3a1dc.tar.gz
cpython-cb5c802dcf8851663c4eac5d73f968f626a3a1dc.tar.bz2
Fix id of 'Internet Message Format' RFC in email doc (GH-24137)
Previous ID (5233) refers to "Sieve Email Filtering: Subaddress Extension". It seems that the actual reference should be "Internet Message Format" RFC 5322 (https://tools.ietf.org/html/rfc5322). (The typo probably comes from commit 29d1bc0842 in which the ID of this RFC got updated from the obsolete 2822.) Co-authored-by: Ambrose Chua <ambrose@hey.com>
Diffstat (limited to 'Doc/library/email.rst')
-rw-r--r--Doc/library/email.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.rst b/Doc/library/email.rst
index fae99cf..5eebcd9 100644
--- a/Doc/library/email.rst
+++ b/Doc/library/email.rst
@@ -16,7 +16,7 @@ The :mod:`email` package is a library for managing email messages. It is
specifically *not* designed to do any sending of email messages to SMTP
(:rfc:`2821`), NNTP, or other servers; those are functions of modules such as
:mod:`smtplib` and :mod:`nntplib`. The :mod:`email` package attempts to be as
-RFC-compliant as possible, supporting :rfc:`5233` and :rfc:`6532`, as well as
+RFC-compliant as possible, supporting :rfc:`5322` and :rfc:`6532`, as well as
such MIME-related RFCs as :rfc:`2045`, :rfc:`2046`, :rfc:`2047`, :rfc:`2183`,
and :rfc:`2231`.