summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-29Merge branch 'develop' into release-0.7.x0.7.0release-0.7.xdrebs
2015-04-29Merge tag '0.6.2'drebs
Tag leap.mx version 0.6.2
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-24[pkg] remove initscript from python packagedrebs
There are some reasons to remove the initscript from the python package: 1. To include the initscript it in the python package it is necessary to assume a lot of things about the system in which the package would be installed. 2. The debian packaging system will correctly create an initscript by itself. 3. We don't have to maintain 2 different setup.py files (one in master/develop branch and another in debian package branches).
2015-04-21[pkg] fold in changes0.6.2drebs
Releases: 0.6.2
2015-04-21fixed bullet points for #Issuesvarac
2015-04-21added #Issues dection, including major bugs for 0.6.1 and 0.6varac
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] change default bounce message sender addressdrebs
This commit changes the bounce message sender address to be MAILER-DAEMON@domain, instead of bounce@domain. 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-26[docs] add leap standard commit template to repoKali Kaneko
Because in CDO we trust.
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
2015-02-11Fold in changes0.6.1Ivan Alejandro
2015-02-06Retry watching dirs if failed for some reason (closes #6687).drebs
2015-02-05Add ability to trigger processing on SIGUSR1 (Related: #2591)Kali Kaneko
2015-02-05Process unprocessed mail when MX starts (closes #2591).drebs
2015-01-12sync initscript with debian versionMicah Anderson
2015-01-12add --prefix argument to get distinguishable syslog messagesMicah Anderson
2015-01-12log to syslog. Closes: #6307Kali Kaneko
2014-12-22Use gpg key directlyRuben Pollan
_build_key_from_gpg in keymanager has changed
2014-09-26Merge branch 'release-0.6.0'0.6.0Tomás Touceda
2014-09-26Fold in changesTomás Touceda
2014-09-12Merge remote-tracking branch 'chiiph/feature/6072_error_decrypting_key' into ↵Kali Kaneko
develop
2014-09-12Add errdecr key to each mail Soledad DocumentTomás Touceda
2014-09-11Merge remote-tracking branch 'chiiph/feature/bounce_mails' into developKali Kaneko
2014-09-11Implement mail bouncing under certain problematic situationsTomás Touceda
2014-09-08Merge remote-tracking branch 'bwgpro/user_id_wont_break_mx' into developTomás Touceda
2014-09-08Added changes fileBruno Wagner Goncalves
2014-09-04Leap mx will not stop working for everyone if an user is inconsistentBruno Wagner Goncalves
2014-04-11Merge remote-tracking branch 'chiiph/bug/improve_changelog_readability' into ↵Kali Kaneko
develop
2014-04-10Improve changelog readabilityTomás Touceda
2014-04-04Merge branch 'release-0.3.6'0.5.0Tomás Touceda
2014-04-04Fold in changesTomás Touceda
2014-04-04Update requirementsTomás Touceda
2013-12-19Merge remote-tracking branch ↵Tomás Touceda
'refs/remotes/drebs/bug/4475_use-couch-document' into develop Conflicts: src/leap/mx/mail_receiver.py
2013-12-17Merge remote-tracking branch 'chiiph/bug/multiple_encoding' into developIvan Alejandro
2013-12-17Ignore encoding, use message.as_string directly.Tomás Touceda
The message is already in str type, so we don't care about encoding. json.dumps will ignore convertion.
2013-12-16Use CouchDocument from new backend (#4475).drebs
2013-12-10Merge branch 'release-0.3.5'0.3.5Tomás Touceda
2013-12-09Fold in changesTomás Touceda
2013-12-05Merge remote-tracking branch 'chiiph/bug/fix_deadlock' into developKali Kaneko
2013-12-05Fix deadlock situation if adding a skipped mail failsTomás Touceda
2013-11-26Add tester script to ease debugging problematic mails.Tomás Touceda