<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_mail.git/src/leap/mail/adaptors, branch develop</title>
<subtitle>[leap_mail] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/'/>
<entry>
<title>[refactor] deprecating u1db, using l2db instead.</title>
<updated>2016-08-01T08:35:04+00:00</updated>
<author>
<name>NavaL</name>
<email>ayoyo@thoughtworks.com</email>
</author>
<published>2016-07-24T21:15:01+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=ee978045e6420377c908c4d4b4400dd3c18a2909'/>
<id>ee978045e6420377c908c4d4b4400dd3c18a2909</id>
<content type='text'>
To keep compatibility with soledad upgrades. It will namely cause version conflicts
to not be properly handled otherwise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To keep compatibility with soledad upgrades. It will namely cause version conflicts
to not be properly handled otherwise.
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] Use cryptography instead of pycryptopp to reduce dependencies.</title>
<updated>2016-02-11T00:20:33+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-02-11T00:20:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=f2fa5804879f6d7614d05537b042be3586958e7f'/>
<id>f2fa5804879f6d7614d05537b042be3586958e7f</id>
<content type='text'>
* Resolves: #7889
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Resolves: #7889
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed the get_body logic</title>
<updated>2015-12-10T17:38:41+00:00</updated>
<author>
<name>Bruno Wagner</name>
<email>bwagner@riseup.net</email>
</author>
<published>2015-11-04T14:10:56+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=71cf1c4a243181330c0e973b8f69f9143b3d18de'/>
<id>71cf1c4a243181330c0e973b8f69f9143b3d18de</id>
<content type='text'>
It won't break anymore if the body is None, but will
return an empty body in that case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It won't break anymore if the body is None, but will
return an empty body in that case
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] fail gracefully if fetch fails</title>
<updated>2015-09-28T20:03:43+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-09-28T20:03:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=20273e82dfb66dcf1d2dac2df217ba835a622c38'/>
<id>20273e82dfb66dcf1d2dac2df217ba835a622c38</id>
<content type='text'>
Related: #7495
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related: #7495
</pre>
</div>
</content>
</entry>
<entry>
<title>[tests] properly skip not implemented tests, do not raise</title>
<updated>2015-08-21T04:02:06+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-08-21T03:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=da03f8933a59bde6b9c928416ca333630f04819a'/>
<id>da03f8933a59bde6b9c928416ca333630f04819a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[docs] add folker to authors + pep8</title>
<updated>2015-08-12T03:00:22+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-08-12T02:58:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=ccc885df223c3e66dc8d560c8054752a30e3f08c'/>
<id>ccc885df223c3e66dc8d560c8054752a30e3f08c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] Fix missing _normailize_dict in DocumentWrapper constructor.</title>
<updated>2015-08-11T11:42:24+00:00</updated>
<author>
<name>Folker Bernitt</name>
<email>fbernitt@thoughtworks.com</email>
</author>
<published>2015-08-11T11:42:24+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=490effb589ad94f2f6f520b385399864b08def91'/>
<id>490effb589ad94f2f6f520b385399864b08def91</id>
<content type='text'>
In the constructor values already is normalized (i.e. with underscores),
while kwargs contains items that are not normalized (i.e. with dashes).
Joining the dicts resulted in two entries that only differed by dash or
underscores. The setattr then set the value that occurred later in
items, thereby sometimes overriding the correct value with the default
one.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the constructor values already is normalized (i.e. with underscores),
while kwargs contains items that are not normalized (i.e. with dashes).
Joining the dicts resulted in two entries that only differed by dash or
underscores. The setattr then set the value that occurred later in
items, thereby sometimes overriding the correct value with the default
one.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] Fix typo in content-transfer-encoding in walk.py.</title>
<updated>2015-08-11T11:38:56+00:00</updated>
<author>
<name>Folker Bernitt</name>
<email>fbernitt@thoughtworks.com</email>
</author>
<published>2015-08-11T11:38:56+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=68fdc62d4c2792fb7fdea90f1117cf6c6f1c5ffc'/>
<id>68fdc62d4c2792fb7fdea90f1117cf6c6f1c5ffc</id>
<content type='text'>
The get_raw_docs method accesses header field content-transfer-encoding
using the string 'content-transfer-type' so the raw doc dict always ends
up with that value set to empty string.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The get_raw_docs method accesses header field content-transfer-encoding
using the string 'content-transfer-type' so the raw doc dict always ends
up with that value set to empty string.
</pre>
</div>
</content>
</entry>
<entry>
<title>[tests] Skipped tests that were not implemented</title>
<updated>2015-08-03T22:18:31+00:00</updated>
<author>
<name>Bruno Wagner</name>
<email>bwgpro@gmail.com</email>
</author>
<published>2015-08-03T22:18:31+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=4777ad0d3ec5378de8b0c7ffbcecf2e19ad9c180'/>
<id>4777ad0d3ec5378de8b0c7ffbcecf2e19ad9c180</id>
<content type='text'>
Functionality that is not implemented should not fail, instead
it should be skipped until it is implemented.

Added a return to test_imap_store_fetch setup to make sure the deferred
is being handled
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Functionality that is not implemented should not fail, instead
it should be skipped until it is implemented.

Added a return to test_imap_store_fetch setup to make sure the deferred
is being handled
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] fixed syntax error in models.py</title>
<updated>2015-07-29T14:11:33+00:00</updated>
<author>
<name>Folker Bernitt</name>
<email>fbernitt@thoughtworks.com</email>
</author>
<published>2015-07-29T14:11:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=5027dd2dd3c7679a7eea025d838a7d472c355623'/>
<id>5027dd2dd3c7679a7eea025d838a7d472c355623</id>
<content type='text'>
The lambdas take two args, so it needs to be a tuple.
Furthermore filter needs a collection.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The lambdas take two args, so it needs to be a tuple.
Furthermore filter needs a collection.
</pre>
</div>
</content>
</entry>
</feed>
