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.
Created on 2015年01月26日 12:41 by Pilessio, last changed 2022年04月11日 14:58 by admin.
| Messages (4) | |||
|---|---|---|---|
| msg234738 - (view) | Author: Alessio (Pilessio) | Date: 2015年01月26日 12:41 | |
In example when appending a message with more than one flag in a tuple with imaplib:
print flags
('\\Answered', '\\Seen')
connection.append('INBOX', flags, date, msg)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-42-832414ffe4b5> in <module>()
----> 1 connection.append('INBOX', flags, date, msg[1][0][1])
/usr/lib/python2.7/imaplib.py in append(self, mailbox, flags, date_time, message)
326 if flags:
327 if (flags[0],flags[-1]) != ('(',')'):
--> 328 flags = '(%s)' % flags
329 else:
330 flags = None
TypeError: not all arguments converted during string formatting
When I have only one flag to append:
print flags
Out[70]: ('\\Answered',)
connection.append('INBOX', flags, date, msg)
Out[74]: ('OK', ['[APPENDUID 1 1012] APPEND completed'])
Any ideas?
Thanks
|
|||
| msg234739 - (view) | Author: Eric V. Smith (eric.smith) * (Python committer) | Date: 2015年01月26日 13:04 | |
flags is supposed to be a string. This is not well documented, like much of the module. Try: flags = r'(\Answered \Seen)' |
|||
| msg234743 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2015年01月26日 14:04 | |
Indeed, as with much of the early email related code in the stdlib, the documentation assumes way too much familiarity with the relevant RFC...which is really hard to read. We should add a few more details to the docs (like FLAGS being a string) even if we don't have the resources to do a full overhaul. |
|||
| msg414251 - (view) | Author: Stanley (slateny) * | Date: 2022年03月01日 09:57 | |
How would this sound as clarification for the flags argument? *flags* is a space-separated string containing IMAP flags tokens. Must start with ``\``. Perhaps optionally also provide the list of system flags as given in https://datatracker.ietf.org/doc/html/rfc3501#section-2.3.2 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:12 | admin | set | github: 67512 |
| 2022年03月01日 09:57:22 | slateny | set | nosy:
+ slateny messages: + msg414251 |
| 2021年11月27日 12:22:00 | iritkatriel | set | keywords:
+ easy title: Issue with imaplib and append messages passing a tuple with flags -> [doc] mention that flags arg to imaplib's append should be a string type: enhancement versions: + Python 3.11, - Python 2.7, Python 3.4, Python 3.5 |
| 2015年01月26日 14:04:31 | r.david.murray | set | assignee: docs@python components: + Documentation, - Library (Lib) versions: + Python 3.4, Python 3.5 nosy: + docs@python, r.david.murray messages: + msg234743 stage: needs patch |
| 2015年01月26日 13:04:22 | eric.smith | set | nosy:
+ eric.smith messages: + msg234739 |
| 2015年01月26日 12:41:03 | Pilessio | create | |