summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-02-17Use generic versioneer _version.pyvarac
2017-02-16Dont use hardcoded version from _version.pyvarac
2017-02-02Merge branch 'master' into debian/platform-0.10varac
2017-01-27[style] pep8 fixesdrebs
2017-01-27Returns doc as None if we have some error during the encryptionThais Siqueira
When we had an error during encryption, the doc property "_enc_json" was empty and we were saving this empty data on CouchDb. Then it was causing the [GNUPG:] NODATA 2 error during decryption. Related with: https://github.com/pixelated/pixelated-user-agent/issues/908 with @tayanefernandes
2017-01-26[style] improve readabilityKali Kaneko
2017-01-26[bug] check if 'enabled' field exist in the Identity documentRuben Pollan
- Related: #7961
2016-08-31Merge branch 'develop' into debian/platform-0.9Kali Kaneko
2016-05-18[pkg] freeze debian versiondebian/platform-0.8Kali Kaneko
2016-05-16[style] improve readabilityKali Kaneko
2016-05-13[pkg] freeze debian versionKali Kaneko
2016-05-13Merge tag '0.8.1' into debian/platform-0.8Kali Kaneko
Tag leap.mx version 0.8.1
2016-05-12[bug] check if 'enabled' field exist in the Identity documentRuben Pollan
- Related: #7961
2016-05-04[pkg] freeze debian versionKali Kaneko
2016-05-04[pkg] freeze debian versionKali Kaneko
2016-05-04[deb] bump version to 0.8.0 finalKali Kaneko
2016-04-14[pkg] freeze debian versionKali Kaneko
2016-04-14Merge branch 'develop' into debian/platform-0.8Kali Kaneko
2016-04-14[feature] Bounce stalled emails after a timeout.Ruben Pollan
* Resolves: #7998
2016-04-07[style] remove unused codeRuben Pollan
2016-04-01[pkg] update versioneer to 0.16Kali Kaneko
2016-03-11[bug] Check if the account is enabledRuben Pollan
- Resolves: #7961
2015-12-10[pkg] freeze debian versionKali Kaneko
2015-12-10Merge branch 'develop' into debian/platform-0.8Kali Kaneko
2015-12-09[feat] use the original message for encryptionRuben Pollan
Do not reconstruct the message from the parsed one. Added test for missleading encoding. - Resolves: #7253
2015-12-09[feat] postfix lookup against couchdb for client smtp fingerprintRuben Pollan
- Resolves: #4285
2015-12-02[pkg] update debian changelog to 0.8.0alphaKali Kaneko
2015-12-02[pkg] freeze debian versionKali Kaneko
2015-12-02Merge branch 'develop' into debian/platform-0.8Kali Kaneko
2015-11-26[style] fix pep8 errorsRuben Pollan
2015-11-23[feat] add '@deliver.local' to uuidRuben Pollan
- Resolves: #5959
2015-11-12[feat] update leap.mx usage of soledad CouchDatabaseRuben Pollan
- Related: #7565
2015-09-15[feat] return a more meaningful msg if user exists but has no keyRuben Pollan
- Resolves: #7272
2015-09-15[test] add test infrastructureRuben Pollan
Some refactor on the couchdb usage was needed to be able to mock couchdb. - Resolves: #7435
2015-09-11[feat] Don't add any X-Leap-Provenance headerRuben Pollan
- Resolves: #7439
2015-04-29[pkg] freeze debian versiondrebs
2015-04-29Merge tag '0.7.0' into debian/platform-0.7drebs
Release Leap MX version 0.7.0. Conflicts: setup.py
2015-04-24[feat] make log messages match postfix's configdrebs
Change the virtual alias map and the access recipien access checker log messages so they match postfix's configuration statements.
2015-04-22[pkg] freeze debian versiondrebs
2015-04-21Merge tag '0.6.2' into debian/release-0.6.2drebs
Tag leap.mx version 0.6.2 Conflicts: CHANGELOG src/leap/mx/mail_receiver.py
2015-04-20[doc] update documentationdrebs
I'm updating (1) some very outdated doc from when the program was not yet written, and (2) some small stuff inside classes docstrings.
2015-04-20[bug] implement message bouncing according to RFCsdrebs
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.
2015-04-16[bug] fix extraction of uuid from message headersdrebs
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 <uuid>@<domain> 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.
2015-04-16[bug] return uuid as result of alias resolverdrebs
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.
2015-04-13[bug] fix bounce message recipientdrebs
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
2015-04-09[refactor] use couch reduced views for lookupsdrebs
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.
2015-04-09[bug] limit pgp key lookup to access check serverdrebs
In order to minimize the number of couchdb queries and the number of mx lookups in case of junk mail this commit restricts the pgp key lookup to the access check server (and removes it from the alias server). Closes: #6795.
2015-03-25[refactor] separate tcp map server codedrebs
Separate the common tcp map server code, used for both alias resolver and recipient access checker, to its own file.
2015-03-25[feat] reject incoming mail if no pgp key founddrebs
Implement a PGP key lookup in the postfix smtp recipient restriction and virtual alias mapping levels. If no PGP key is found, then the address is rejected with a temporary error. Closes: #6795
2015-03-25[bug] correctly return async bouncer deferreddrebs