Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-22 | Added clock support function | Thais Siqueira | |
Now we can clock how long a piece of code takes to execute without being constrained by whole method like we were with the decorator | |||
2016-08-22 | Adds a patch to measure function running in twisted | Thais Siqueira | |
The README explains how to apply the patch so you can get information about long running methods (longer than 100ms) on the main thread | |||
2016-08-19 | Started deferring leap session creation #759 | Bruno Wagner | |
Started adapting get_leap_session to deferreds Soledad and keymanager setup calls will now happen in deferreds and leap session creation itself is a deferred with callbacks This is a start in breaking the big blocking calls we were doing on the main thread, this was done without changing code inside the leap libraries yet so things can be further optimized This breaks the ~4 seconds get_leap_session piece into smaller 1 seconds one, that can be further optimized and deferred to even smaller calls There are requests calls happening on the main thread that should get this number even further down Also moved some pieces from bitmask libraries to our bootstrap, because they are not bitmask libraries anymore and that was causing confusion | |||
2016-08-19 | Removed auth from leap session #759 | Bruno Wagner | |
Authentication is now consistently done before creating the leap session, so I removed the auth attempt from inside the leap session factory | |||
2016-08-19 | Normalizing single and multi user bootstrap #759 | Bruno Wagner | |
Consolidated authentication to always be done is a defer to thread and changed the authenticate_user method name to conform with what it actually does | |||
2016-08-19 | Removed cert download from session creation #759 | Bruno Wagner | |
It is already done earlier in the bootstrap and is not user specific, so shouldn't be done on user bootstrap | |||
2016-07-05 | change github url in setup.py to new one | Zara Gebru | |
2016-07-04 | Issue #738: Bypass cookie validation for sandbox | Felix Hammerl | |
2016-06-28 | Normalize i18n keys | Tulio Casagrande | |
2016-06-27 | Explicitly use POST to test csrf | Caio Carrara | |
2016-06-27 | Csrf not being enforced on GET | Caio Carrara | |
2016-06-27 | Fix xsrf-token verification in async calls | Caio Carrara | |
The previous behaviour only checked xsrf-token in headers, but it can be informed in a token as well. | |||
2016-06-26 | Removed deprecated options from requirements.txt | Bruno Wagner | |
2016-06-24 | added dummy user attribute to SRPsession as the constructor changed -- ↵ | NavaL | |
fixing build -- Issue #694 | |||
2016-06-24 | Issue #694 add an admin restricted resource for user stats | NavaL | |
2016-06-23 | refactoring: renaming services factory methods to relate them to user ↵ | NavaL | |
services sessions | |||
2016-06-23 | refactoring: moved Service factories to the service config file | NavaL | |
2016-06-17 | Issue #608: Fix lowercase attachment test to check the filename | Tulio Casagrande | |
2016-06-17 | Issue #608: Add unit test for case-specific lookup | Felix Hammerl | |
2016-06-16 | Fix UNNAMED attachment bug | Tulio Casagrande | |
Previously some attachments were being showed as UNNAMED. This change fix it and creates propers tests for attachments. See: #608 | |||
2016-06-16 | Stops filtering application/pgp-keys attachments | Tulio Casagrande | |
See: #608 | |||
2016-06-14 | pep8 ^^ | NavaL | |
2016-06-14 | starting the server when the reactor is running and adding proper error ↵ | NavaL | |
handling during multi-user boostrap - reactor.stop will not work if the reactor is not running. This will make sure it will be stopped on bootstrap errors now. - added a wrapper that returns a defer.fail for exceptions thrown during the multi-user boostrap - Issue #535 | |||
2016-06-14 | Empty FEEDBACK_URL env variable should also disable feedback | NavaL | |
This is needed as we need to provide empty FEEDBACK_URL, just to remind that it can be set if desired Issue #710 | |||
2016-06-07 | Update keymanager calls due api update | Caio Carrara | |
Some keymanager api was updated, so we needed to update some calls. | |||
2016-06-02 | RootResource should return 503 during startup (#699) | Blake Williams | |
Return 503 code while RootResource is in MODE_STARTUP | |||
2016-06-02 | Revert "added custom c extension to set mutex locking for openssl rand ↵ | NavaL | |
generation" This reverts commit 6b528c26a05f1c3f969a9896328be408bcfd6064. | |||
2016-06-01 | added custom c extension to set mutex locking for openssl rand generation | NavaL | |
2016-05-31 | Remove unused session_id | Tulio Casagrande | |
2016-05-31 | Merge pull request #701 from shabbyrobe/fix-issue-695 | Christoph | |
Issue 695: Show all recipients in mail sent folder | |||
2016-05-30 | Handle errors on started process | Tulio Casagrande | |
In single user-mode, the InvalidAuthTokenError may occur during initialization | |||
2016-05-27 | Issue #695: Show all recipients in mail sent folder | shabbyrobe | |
2016-05-26 | Updated calls to addRawHeader to use setRawHeaders | shabbyrobe | |
2016-05-22 | accomodates the case where the email address is the data sent with the event | NavaL | |
- now username and user_id are mapped when the user logs in - Issue #686 | |||
2016-05-20 | adding event as first argument on invalid soledad register callback. ↵ | NavaL | |
register sends it too. Issue #686 | |||
2016-05-19 | issue #685 remove duplicated email recipients | mfrankie | |
2016-05-19 | remove duplicated mails, wip | mfrankie | |
2016-05-19 | when invalid soledad auth token, it logs user out if multi-user and stops ↵ | NavaL | |
the reactor if single-user mode Issue #689 | |||
2016-05-18 | Issue #692 re-added logout back in the feature toggle | NavaL | |
2016-05-13 | Issue #691: Move Twisted dependency to requirements | Felix Hammerl | |
2016-05-13 | Issue #691: Refactor to Twisted 16.1.1 | Felix Hammerl | |
2016-05-13 | Issue #691: Upgrade Twisted | Felix Hammerl | |
2016-05-12 | Update ssl arguments description | Caio Carrara | |
The previous description were mentioning dispatcher use, but since we don't use it anymore, they were changed to refer to server-mode. | |||
2016-05-12 | we still need the ssl arguments, even in no-dispatcher-mode | Christoph Kluenter | |
2016-05-11 | Remove dispatcher references from service | Caio Carrara | |
Since we're not using dispatcher anymore, it doesn't make sense to keep dispatcher references and program flows that depend on it. For example, it doesn't make sense keep the flag --organization-mode, so it was removed as well. | |||
2016-04-29 | Issue #679: Fix CSS and markup for attachments | Felix Hammerl | |
2016-04-13 | Issue #674: Update Account usage to pass user_id | Caio Carrara | |
There is an update on leap_mail where an user id became required to create an Account. So, this change update the Account usage on user agent to pass this parameter. | |||
2016-04-13 | Issue #431: Review | Felix Hammerl | |
* Remove GenericDeferredErrorHandler class * Convert static method generic_error_handling to function instead | |||
2016-04-12 | Removed time logging from mails_resource | Bruno Wagner | |
Removed the time logging, it can be put adhoc when we want to test a specific case | |||
2016-04-11 | Fixed pep8 warning | Bruno Wagner | |