This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author melicertes
Recipients
Date 2004-09-09.20:43:42
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
email.Utils.parseaddr() does not successfully parse a
field value into a (comment, address) pair if the
address contains a source route with more than one hop.

i.e., it is successfully parses this:

  "God" <@hop1.org:jeff@spec.org>

to get the address <jeff@spec.org>, but it fails to do
the same if supplied with a 2-hop source route:

  "God" <@hop1.org,@hop2.net:jeff@spec.org>

In this case, it gets the comment ("God") right, but
fails to extract the address.

Multi-hop source routes, while deprecated, are still
valid in rfc2822.

History
Date User Action Args
2007-08-23 14:26:06adminlinkissue1025395 messages
2007-08-23 14:26:06admincreate