<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_mail.git, branch develop</title>
<subtitle>[leap_mail] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/'/>
<entry>
<title>Deprecated repo</title>
<updated>2017-10-26T09:08:36+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2017-10-26T09:08:36+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=ced16d1b8116d884e7a40676ca711548cf50ef05'/>
<id>ced16d1b8116d884e7a40676ca711548cf50ef05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] Remove senders X-Leap-* headers if the email came with them</title>
<updated>2016-08-01T17:08:56+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-08-01T16:51:08+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=f39a5284ee208a8ba8194b4317b77114e38d73d9'/>
<id>f39a5284ee208a8ba8194b4317b77114e38d73d9</id>
<content type='text'>
We use the X-Leap-Signature and X-Leap-Encryption to signal the
signature and encryption status of emails. An attacker could add this
headers and trick bitmask to believe that the email was signed and/or
encrypted. Now we remove this headers from the original email if they
are present before adding ours.

- Resolves: #7429
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We use the X-Leap-Signature and X-Leap-Encryption to signal the
signature and encryption status of emails. An attacker could add this
headers and trick bitmask to believe that the email was signed and/or
encrypted. Now we remove this headers from the original email if they
are present before adding ours.

- Resolves: #7429
</pre>
</div>
</content>
</entry>
<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>Merge remote-tracking branch 'pixelated/check_requirements-latest' into develop</title>
<updated>2016-07-05T15:27:36+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-07-05T15:27:36+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=3e5d3caa4f213055ebb6c21036fc81ea6df248c3'/>
<id>3e5d3caa4f213055ebb6c21036fc81ea6df248c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove links to pixelated</title>
<updated>2016-07-05T12:59:34+00:00</updated>
<author>
<name>Christoph Kluenter</name>
<email>ckluente@thoughtworks.com</email>
</author>
<published>2016-07-05T12:59:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=67a0ee18932dddf673bb233e9bddb5bc6d6fedd7'/>
<id>67a0ee18932dddf673bb233e9bddb5bc6d6fedd7</id>
<content type='text'>
See https://github.com/pixelated/puppet-pixelated/issues/49
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://github.com/pixelated/puppet-pixelated/issues/49
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] initialize OpenSSL context just once in leap.mail</title>
<updated>2016-06-18T00:14:18+00:00</updated>
<author>
<name>NavaL</name>
<email>ayoyo@thoughtworks.com</email>
</author>
<published>2016-06-17T19:37:24+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=5992172f58684ff21bffec9ed9414aaa9b26cd31'/>
<id>5992172f58684ff21bffec9ed9414aaa9b26cd31</id>
<content type='text'>
Do not initialize the openssl context on each call to get mail payload phash.

The openSSL backend should only be initialized once because it is activating the os random engine
which in turn unregister and free current engine first. This is very tricky when operations are running in threads
as it essentially momentarily unregister the openssl crypto callbacks that makes openssl thread safe.

- Resolves: #8180 with the soledad PR #324
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Do not initialize the openssl context on each call to get mail payload phash.

The openSSL backend should only be initialized once because it is activating the os random engine
which in turn unregister and free current engine first. This is very tricky when operations are running in threads
as it essentially momentarily unregister the openssl crypto callbacks that makes openssl thread safe.

- Resolves: #8180 with the soledad PR #324
</pre>
</div>
</content>
</entry>
<entry>
<title>[tests] keymanager._fetcher doesn't exist anymore</title>
<updated>2016-06-08T14:48:09+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-06-08T10:43:29+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=0cef35297c8a38d27f390b27ec3d0be0a84230ad'/>
<id>0cef35297c8a38d27f390b27ec3d0be0a84230ad</id>
<content type='text'>
- Resolves: #8177
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Resolves: #8177
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pixelated/fix_sign_apple_mail' into develop</title>
<updated>2016-06-08T14:47:29+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-06-08T14:47:29+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=736ea864f0b6e8148ecca7f003f8d6997319c3b3'/>
<id>736ea864f0b6e8148ecca7f003f8d6997319c3b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pixelated/fix_test_decrypt_email' into develop</title>
<updated>2016-06-07T19:02:17+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2016-06-07T19:02:17+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=c3ecebbd26637e628047d71cd1ddd9338efbdc60'/>
<id>c3ecebbd26637e628047d71cd1ddd9338efbdc60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[pkg] bump version compat for keymanager</title>
<updated>2016-06-06T23:25:43+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2016-06-06T23:25:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mail.git/commit/?id=75f046b5c23ad34ed50ae3d7b97abe93a5db079c'/>
<id>75f046b5c23ad34ed50ae3d7b97abe93a5db079c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
