1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
#
# Copyright (c) 2014 ThoughtWorks, Inc.
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pixelated is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PCULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
import json
from uuid import uuid4
from email.mime.text import MIMEText
from leap.mail.imap.fields import fields
import leap.mail.walk as walk
import dateutil.parser as dateparser
from pixelated.adapter.model.status import Status
import pixelated.support.date
from email.MIMEMultipart import MIMEMultipart
from pycryptopp.hash import sha256
import re
from pixelated.support.functional import compact
class Mail(object):
@property
def to(self):
return self.headers['To']
@property
def cc(self):
return self.headers['Cc']
@property
def bcc(self):
return self.headers['Bcc']
@property
def date(self):
return self.headers['Date']
@property
def status(self):
return Status.from_flags(self.flags)
@property
def flags(self):
return self.fdoc.content.get('flags')
@property
def mailbox_name(self):
return self.fdoc.content.get('mbox')
@property
def _mime_multipart(self):
if self._mime:
return self._mime
mime = MIMEMultipart()
for key, value in self.headers.items():
mime[str(key)] = str(value)
try:
body_to_use = self.body
except AttributeError:
body_to_use = self.text_plain_body
mime.attach(MIMEText(body_to_use, 'plain', self._charset()))
self._mime = mime
return mime
def _charset(self):
if 'content_type' in self.headers and 'charset' in self.headers['content_type']:
return self._parse_charset_header(self.headers['content_type'])
else:
return 'utf-8'
def _parse_charset_header(self, charset_header, default_charset='utf-8'):
try:
return re.compile('.*charset=(.*);').match(charset_header).group(1)
except:
return default_charset
@property
def raw(self):
return self._mime_multipart.as_string()
def _get_chash(self):
return sha256.SHA256(self.raw).hexdigest()
class InputMail(Mail):
FROM_EMAIL_ADDRESS = None
def __init__(self):
self._raw_message = None
self._fd = None
self._hd = None
self._bd = None
self._chash = None
self._mime = None
self.headers = {}
self.body = ''
self._status = []
@property
def ident(self):
return self._get_chash()
def get_for_save(self, next_uid, mailbox):
docs = [self._fdoc(next_uid, mailbox), self._hdoc()]
docs.extend([m for m in self._cdocs()])
return docs
def _fdoc(self, next_uid, mailbox):
if self._fd:
return self._fd
fd = {}
fd[fields.MBOX_KEY] = mailbox
fd[fields.UID_KEY] = next_uid
fd[fields.CONTENT_HASH_KEY] = self._get_chash()
fd[fields.SIZE_KEY] = len(self.raw)
fd[fields.MULTIPART_KEY] = True
fd[fields.RECENT_KEY] = True
fd[fields.TYPE_KEY] = fields.TYPE_FLAGS_VAL
fd[fields.FLAGS_KEY] = Status.to_flags(self._status)
self._fd = fd
return fd
def _get_body_phash(self):
return walk.get_body_phash_multi(walk.get_payloads(self._mime_multipart))
def _hdoc(self):
if self._hd:
return self._hd
# InputMail does not have a from header but we need it when persisted into soledad.
headers = self.headers.copy()
headers['From'] = InputMail.FROM_EMAIL_ADDRESS
hd = {}
hd[fields.HEADERS_KEY] = headers
hd[fields.DATE_KEY] = headers['Date']
hd[fields.CONTENT_HASH_KEY] = self._get_chash()
hd[fields.MSGID_KEY] = ''
hd[fields.MULTIPART_KEY] = True
hd[fields.SUBJECT_KEY] = headers.get('Subject')
hd[fields.TYPE_KEY] = fields.TYPE_HEADERS_VAL
hd[fields.BODY_KEY] = self._get_body_phash()
hd[fields.PARTS_MAP_KEY] = \
walk.walk_msg_tree(walk.get_parts(self._mime_multipart), body_phash=self._get_body_phash())['part_map']
self._hd = hd
return hd
def _cdocs(self):
return walk.get_raw_docs(self._mime_multipart, self._mime_multipart.walk())
def to_mime_multipart(self):
mime_multipart = MIMEMultipart()
for header in ['To', 'Cc', 'Bcc']:
if self.headers[header]:
mime_multipart[header] = ", ".join(self.headers[header])
if self.headers['Subject']:
mime_multipart['Subject'] = self.headers['Subject']
mime_multipart['Date'] = self.headers['Date']
if type(self.body) is list:
for part in self.body:
mime_multipart.attach(MIMEText(part['raw'], part['content-type']))
else:
mime_multipart.attach(MIMEText(self.body, 'plain', 'utf-8'))
return mime_multipart
def to_smtp_format(self):
mime_multipart = self.to_mime_multipart()
mime_multipart['From'] = InputMail.FROM_EMAIL_ADDRESS
return mime_multipart.as_string()
@staticmethod
def delivery_error_template(delivery_address):
return InputMail.from_dict({
'body': "Mail undelivered for %s" % delivery_address,
'header': {
'bcc': [],
'cc': [],
'subject': "Mail undelivered for %s" % delivery_address
}
})
@staticmethod
def from_dict(mail_dict):
input_mail = InputMail()
input_mail.headers = {key.capitalize(): value for key, value in mail_dict.get('header', {}).items()}
# XXX this is overriding the property in PixelatedMail
input_mail.headers['Date'] = pixelated.support.date.iso_now()
# XXX this is overriding the property in PixelatedMail
input_mail.body = mail_dict.get('body', '')
# XXX this is overriding the property in the PixelatedMail
input_mail.tags = set(mail_dict.get('tags', []))
input_mail._status = set(mail_dict.get('status', []))
return input_mail
class PixelatedMail(Mail):
@staticmethod
def from_soledad(fdoc, hdoc, bdoc, parts=None, soledad_querier=None):
mail = PixelatedMail()
mail.parts = parts
mail.boundary = str(uuid4()).replace('-', '')
mail.bdoc = bdoc
mail.fdoc = fdoc
mail.hdoc = hdoc
mail.querier = soledad_querier
mail._mime = None
return mail
def _decode_part(self, part):
encoding = part['headers'].get('Content-Transfer-Encoding', '')
content_type = self._parse_charset_header(part['headers'].get('Content-Type'))
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')
}
if encoding:
return decoding_map[encoding](part['content'], content_type)
else:
return part['content']
@property
def alternatives(self):
return self.parts.get('alternatives')
@property
def text_plain_body(self):
if self.parts and len(self.alternatives) >= 1:
return self._decode_part(self.alternatives[0])
else:
return self.bdoc.content['raw'] # plain
@property
def html_body(self):
if self.parts and len(self.alternatives) > 1:
html_parts = [e for e in self.alternatives if re.match('text/html', e['headers'].get('Content-Type', ''))]
if len(html_parts):
return self._decode_part(html_parts[0])
@property
def headers(self):
_headers = {
'To': [],
'Cc': [],
'Bcc': []
}
hdoc_headers = self.hdoc.content['headers']
for header in ['To', 'Cc', 'Bcc']:
header_value = hdoc_headers.get(header)
if not header_value:
continue
_headers[header] = header_value if type(header_value) is list else header_value.split(',')
_headers[header] = map(lambda x: x.strip(), compact(_headers[header]))
for header in ['From', 'Subject']:
_headers[header] = hdoc_headers.get(header)
_headers['Date'] = self._get_date()
if self.parts and len(self.parts['alternatives']) > 1:
_headers['content_type'] = 'multipart/alternative; boundary="%s"' % self.boundary
elif self.hdoc.content['headers'].get('Content-Type'):
_headers['content_type'] = hdoc_headers.get('Content-Type')
if hdoc_headers.get('Reply-To'):
_headers['Reply-To'] = hdoc_headers.get('Reply-To')
return _headers
def _get_date(self):
date = self.hdoc.content.get('date', None)
if not date:
date = self.hdoc.content['received'].split(";")[-1].strip()
return dateparser.parse(date).isoformat()
@property
def security_casing(self):
casing = {"imprints": [], "locks": []}
casing["imprints"] = self.signature_information
if self.encrypted:
casing["locks"] = [{"state": "valid"}]
return casing
@property
def tags(self):
_tags = self.fdoc.content.get('tags', '[]')
return set(_tags) if type(_tags) is list or type(_tags) is set else set(json.loads(_tags))
@property
def ident(self):
return self.fdoc.content.get('chash')
@property
def mailbox_name(self):
return self.fdoc.content.get('mbox')
@property
def is_recent(self):
return Status('recent') in self.status
@property
def uid(self):
return self.fdoc.content['uid']
def save(self):
return self.querier.save_mail(self)
def set_mailbox(self, mailbox_name):
self.fdoc.content['mbox'] = mailbox_name
def remove_all_tags(self):
self.update_tags(set([]))
def update_tags(self, tags):
self._persist_mail_tags(tags)
return self.tags
def mark_as_read(self):
if Status.SEEN in self.fdoc.content['flags']:
return self
self.fdoc.content['flags'].append(Status.SEEN)
self.save()
return self
def mark_as_unread(self):
if Status.SEEN in self.fdoc.content['flags']:
self.fdoc.content['flags'].remove(Status.SEEN)
self.save()
return self
def mark_as_not_recent(self):
if Status.RECENT in self.fdoc.content['flags']:
self.fdoc.content['flags'].remove(Status.RECENT)
self.save()
return self
def _persist_mail_tags(self, current_tags):
self.fdoc.content['tags'] = json.dumps(list(current_tags))
self.save()
def has_tag(self, tag):
return tag in self.tags
@property
def signature_information(self):
signature = self.hdoc.content["headers"].get("X-Leap-Signature", None)
if signature is None or signature.startswith("could not verify"):
return [{"state": "no_signature_information"}]
else:
if signature.startswith("valid"):
return [{"state": "valid", "seal": {"validity": "valid"}}]
else:
return []
@property
def encrypted(self):
return self.hdoc.content["headers"].get("OpenPGP", None) is not None or \
self.hdoc.content["headers"].get("X-Pixelated-encryption-status", "false") == "true"
@property
def bounced(self):
content_type = self.hdoc.content["headers"].get("Content-Type", '')
if re.compile('delivery-status').search(content_type):
return self._extract_bounced_address(self.hdoc.content)
return False
def _extract_bounced_address(self, part):
part_header = dict(part.get('headers', {}))
if 'Final-Recipient' in part_header:
return part_header['Final-Recipient'].split(';')[1].strip()
elif 'part_map' in part:
for subpart in part['part_map'].values():
result = self._extract_bounced_address(subpart)
if result:
return result
else:
continue
def as_dict(self):
dict_mail = {'header': {k.lower(): v for k, v in self.headers.items()},
'ident': self.ident,
'tags': list(self.tags),
'status': list(self.status),
'security_casing': self.security_casing,
'textPlainBody': self.text_plain_body,
'htmlBody': self.html_body,
'mailbox': self.mailbox_name.lower(),
'attachments': self.parts['attachments'] if self.parts else []}
dict_mail['replying'] = {'single': None, 'all': {'to-field': [], 'cc-field': []}}
sender_mail = self.headers.get('Reply-To', self.headers.get('From'))
# Issue #215: Fix for existing mails without any from address.
if sender_mail is None:
sender_mail = InputMail.FROM_EMAIL_ADDRESS
recipients = [recipient for recipient in self.headers['To'] if recipient != InputMail.FROM_EMAIL_ADDRESS]
recipients.append(sender_mail)
ccs = [cc for cc in self.headers['Cc'] if cc != InputMail.FROM_EMAIL_ADDRESS]
dict_mail['replying']['single'] = sender_mail
dict_mail['replying']['all']['to-field'] = recipients
dict_mail['replying']['all']['cc-field'] = ccs
return dict_mail
|