<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_mx.git, branch 0.6.2</title>
<subtitle>[leap_mx] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/'/>
<entry>
<title>[pkg] fold in changes</title>
<updated>2015-04-21T18:55:12+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-21T18:55:12+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=799703cf884191d097eb5d5316fa964e421683fd'/>
<id>799703cf884191d097eb5d5316fa964e421683fd</id>
<content type='text'>
Releases: 0.6.2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Releases: 0.6.2
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed bullet points for #Issues</title>
<updated>2015-04-21T07:52:28+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2015-04-21T07:52:28+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=e75f5710b3432460348125503342490fa8555293'/>
<id>e75f5710b3432460348125503342490fa8555293</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added #Issues dection, including major bugs for 0.6.1 and 0.6</title>
<updated>2015-04-21T07:50:04+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2015-04-21T07:50:04+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=83a668a6a34f5d8de2f2bb43f92dd307ae4b73c6'/>
<id>83a668a6a34f5d8de2f2bb43f92dd307ae4b73c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] update documentation</title>
<updated>2015-04-20T19:53:25+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-17T19:35:58+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=62def16809c1cf739db5a7a8e7aa24fec70fdf5d'/>
<id>62def16809c1cf739db5a7a8e7aa24fec70fdf5d</id>
<content type='text'>
I'm updating (1) some very outdated doc from when the program was not yet
written, and (2) some small stuff inside classes docstrings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm updating (1) some very outdated doc from when the program was not yet
written, and (2) some small stuff inside classes docstrings.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] implement message bouncing according to RFCs</title>
<updated>2015-04-20T19:12:01+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-15T17:49:56+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=3353e2bccb2625ae06472721cfbb8cf53144a255'/>
<id>3353e2bccb2625ae06472721cfbb8cf53144a255</id>
<content type='text'>
If we do not adhere to the standads, we may have a lot of problems when
bouncing a message. This commit implements a bounce message according to:

  * RFC 6522 - The Multipart/Report Media Type for the Reporting of Mail
    System Administrative Messages

  * RFC 3834 - Do not bounce for unknown or invalid addresses.

  * RFC 3464 - An Extensible Message Format for Delivery Status Notification.

Closes: #6858.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we do not adhere to the standads, we may have a lot of problems when
bouncing a message. This commit implements a bounce message according to:

  * RFC 6522 - The Multipart/Report Media Type for the Reporting of Mail
    System Administrative Messages

  * RFC 3834 - Do not bounce for unknown or invalid addresses.

  * RFC 3464 - An Extensible Message Format for Delivery Status Notification.

Closes: #6858.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] fix extraction of uuid from message headers</title>
<updated>2015-04-16T14:53:48+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-15T17:16:13+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=ae90151c632b376abc2a5bdf76d136b3a3629ea6'/>
<id>ae90151c632b376abc2a5bdf76d136b3a3629ea6</id>
<content type='text'>
Before this commit, the mail receiver system used to compare the domain of the
delivery addresses found in the "Delivered-To" header to find out the final
delivery address. If we assume that the mail server delivery to the spool mail
directory was correct, then we have two facts: (1) the topmost "Delivered-To"
header is the one that indicates the correct final delivery address; and (2)
we should expect the address to be &lt;uuid&gt;@&lt;domain&gt; because of the earlier
alias resolve query made by the mail server.

Another problem is that the domain comparison would compare whatever is in the
"Delivered-To" header with whatever the python's socket module would return,
which depends on the values on /etc/hosts and the order of the values in that
file. This was causing problems whenever the platform made changes in
/etc/hosts.

So this commit eliminates the domain check and gets the uuid from the first
"Delivered-To" header found in the message.

Related: #6858.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this commit, the mail receiver system used to compare the domain of the
delivery addresses found in the "Delivered-To" header to find out the final
delivery address. If we assume that the mail server delivery to the spool mail
directory was correct, then we have two facts: (1) the topmost "Delivered-To"
header is the one that indicates the correct final delivery address; and (2)
we should expect the address to be &lt;uuid&gt;@&lt;domain&gt; because of the earlier
alias resolve query made by the mail server.

Another problem is that the domain comparison would compare whatever is in the
"Delivered-To" header with whatever the python's socket module would return,
which depends on the values on /etc/hosts and the order of the values in that
file. This was causing problems whenever the platform made changes in
/etc/hosts.

So this commit eliminates the domain check and gets the uuid from the first
"Delivered-To" header found in the message.

Related: #6858.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] change default bounce message sender address</title>
<updated>2015-04-16T14:53:48+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-15T16:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=057de70291aee0eaedb8f8318dd1132e960e7e97'/>
<id>057de70291aee0eaedb8f8318dd1132e960e7e97</id>
<content type='text'>
This commit changes the bounce message sender address to be
MAILER-DAEMON@domain, instead of bounce@domain.

Related: #6858.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit changes the bounce message sender address to be
MAILER-DAEMON@domain, instead of bounce@domain.

Related: #6858.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] return uuid as result of alias resolver</title>
<updated>2015-04-16T14:53:13+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-15T15:48:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=527d7d4a67f859a3315812b100b2c58fd0eeded6'/>
<id>527d7d4a67f859a3315812b100b2c58fd0eeded6</id>
<content type='text'>
This fixes a bug introduced on b0ef529cc882a96903597fb5279919969fa286c3, when
the alias resolver was modified to return the user's address instead of the
uuid.

In order to fix this, I had to revert one of the changes made by the commit
above, which is to don't make use of reduced view for the uuid query. The
pgp public key query remains reduced, as implemented in the commit above.

We also refactor the code a bit to allow for log messages specific to each of
tcp map's sublasses.

Related: #6858.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a bug introduced on b0ef529cc882a96903597fb5279919969fa286c3, when
the alias resolver was modified to return the user's address instead of the
uuid.

In order to fix this, I had to revert one of the changes made by the commit
above, which is to don't make use of reduced view for the uuid query. The
pgp public key query remains reduced, as implemented in the commit above.

We also refactor the code a bit to allow for log messages specific to each of
tcp map's sublasses.

Related: #6858.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] fix bounce message recipient</title>
<updated>2015-04-13T19:32:52+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-13T18:58:16+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=14ef3dcce18240b756415fefa2a56936f96a12e9'/>
<id>14ef3dcce18240b756415fefa2a56936f96a12e9</id>
<content type='text'>
The bounce message was using the original message's "From:" header instead of
the "To:" header to indicate the original recipient. This commit fixes that.

Closes: #6854.
Releases: 0.6.2, 0.7.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The bounce message was using the original message's "From:" header instead of
the "To:" header to indicate the original recipient. This commit fixes that.

Closes: #6854.
Releases: 0.6.2, 0.7.0
</pre>
</div>
</content>
</entry>
<entry>
<title>[refactor] use couch reduced views for lookups</title>
<updated>2015-04-09T21:20:00+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-04-09T20:18:37+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_mx.git/commit/?id=b0ef529cc882a96903597fb5279919969fa286c3'/>
<id>b0ef529cc882a96903597fb5279919969fa286c3</id>
<content type='text'>
The way uuid and pgp key were being queried by means of couch views was not
efficient because they weren't using the reduce function and were filtering
the views results in the python code. Also, the uuid is not actually needed to
find out either if the address exists or if there's a pgp public key for that
address. This commit refactors the couch helper to make use of the reduce
functions in queried views and to get rid of the intermediate uuid querying.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The way uuid and pgp key were being queried by means of couch views was not
efficient because they weren't using the reduce function and were filtering
the views results in the python code. Also, the uuid is not actually needed to
find out either if the address exists or if there's a pgp public key for that
address. This commit refactors the couch helper to make use of the reduce
functions in queried views and to get rid of the intermediate uuid querying.
</pre>
</div>
</content>
</entry>
</feed>
