summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/model/mail.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-03-10 16:45:05 +0100
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-03-10 16:45:05 +0100
commit7a7ab08316b4aa4f7b18b50626cb0dc16dde3efb (patch)
tree61e4ba0573974dd8af2ded0ac6b53f2c14295acc /service/pixelated/adapter/model/mail.py
parent7e0f1c7f86c217f903c24e7f0866ac1f6f6b06e7 (diff)
added support for 7 and 8bit content transfer encoding.
- Issue #312
Diffstat (limited to 'service/pixelated/adapter/model/mail.py')
-rw-r--r--service/pixelated/adapter/model/mail.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/service/pixelated/adapter/model/mail.py b/service/pixelated/adapter/model/mail.py
index c5c9e424..8521babf 100644
--- a/service/pixelated/adapter/model/mail.py
+++ b/service/pixelated/adapter/model/mail.py
@@ -234,7 +234,9 @@ class PixelatedMail(Mail):
decoding_map = {
'quoted-printable': lambda content, content_type: unicode(content.decode('quopri'), content_type),
- 'base64': lambda content, content_type: content.decode('base64').decode('utf-8')
+ 'base64': lambda content, content_type: content.decode('base64').decode('utf-8'),
+ '7bit': lambda content, content_type: content.encode(content_type),
+ '8bit': lambda content, content_type: content.encode(content_type)
}
if encoding:
return decoding_map[encoding](part['content'], content_type)