Merge pull request #15 from thekix/master
imaplib expect bytes in the append
This commit is contained in:
commit
c850e745cc
@ -666,7 +666,7 @@ class IMAPFolder(BaseFolder):
|
|||||||
# Do the APPEND.
|
# Do the APPEND.
|
||||||
try:
|
try:
|
||||||
(typ, dat) = imapobj.append(self.getfullIMAPname(),
|
(typ, dat) = imapobj.append(self.getfullIMAPname(),
|
||||||
imaputil.flagsmaildir2imap(flags), date, content)
|
imaputil.flagsmaildir2imap(flags), date, bytes(content, 'utf-8'))
|
||||||
# This should only catch 'NO' responses since append()
|
# This should only catch 'NO' responses since append()
|
||||||
# will raise an exception for 'BAD' responses:
|
# will raise an exception for 'BAD' responses:
|
||||||
if typ != 'OK':
|
if typ != 'OK':
|
||||||
|
Loading…
Reference in New Issue
Block a user