Changes between and of Initial VersionVersion 1Ticket #3793
- Timestamp:
- 04/23/2009 12:14:56 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3793 – description
initial v1 1 1 When doing a IMAP4Client.fetchBody some mail servers will return FLAGS as well as RFC822.TEXT because the /Seen flag has become set (RFC3501 says this SHOULD happen). If this occurs then the reply is thrown away by Command.finish in the lines: 2 2 3 {{{ 3 4 elif N >= 3 and names[1] in self._2_RESPONSES: 4 5 if isinstance(names[2], list) and len(names[2]) >= 1 and names[2][0] == 'FLAGS' and 'FLAGS' not in self.args: … … 6 7 else: 7 8 send.append(L) 9 }}} 8 10 9 11 I can find no way of getting the flags as well as the body in order to get 'FLAGS' in self.args. This means that no unseen message can be retrieved from this server.
