caef9a72fc
Fix imapfolder.getmessageinternaldate misparsing the Date: header from emails due to a bug or surprising behaviour by email.utils.parsedate. This is because email.utils.parsedate's return value contains the unadjusted hour value from the string parsed but does not include information about the time zone in which it is specified. For example (Python 2.7.3): $ python -c "import email.utils; print email.utils.parsedate('Mon, 20 Nov 1995 19:12:08 -0500')" (1995, 11, 20, 19, 12, 8, 0, 1, -1) (the -1 is the isdst field); the -0500 time zone is completely ignored, so e.g. the same input with time "19:12:08 +0300" has the same result. When passed to time.struct_time as allowed per the parsedate documentation, this time is interpreted in GMT and thus deviates from the correct value by the timezone offset (in this example, -5 hours). I consider this a bug in email.utils.parsedate: In my opinion, since the return value of the parsetime doesn't include a timezone, it should be expressed in terms of UTC rather than in terms of the time zone from the Date header; the existence of email.utils.parsedate_tz, to which I've switched, indicates that maybe the authors were aware of this problem. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> |
||
---|---|---|
.. | ||
__init__.py | ||
Base.py | ||
Gmail.py | ||
IMAP.py | ||
LocalStatus.py | ||
LocalStatusSQLite.py | ||
Maildir.py | ||
UIDMaps.py |