summaryrefslogtreecommitdiff
path: root/service
AgeCommit message (Collapse)Author
2016-05-13Issue #691: Move Twisted dependency to requirementsFelix Hammerl
2016-05-13Issue #691: Refactor to Twisted 16.1.1Felix Hammerl
2016-05-13Issue #691: Upgrade TwistedFelix Hammerl
2016-05-12Update ssl arguments descriptionCaio 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-modeChristoph Kluenter
2016-05-11Remove dispatcher references from serviceCaio 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-29Issue #679: Fix CSS and markup for attachmentsFelix Hammerl
2016-04-13Issue #674: Update Account usage to pass user_idCaio 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-13Issue #431: ReviewFelix Hammerl
* Remove GenericDeferredErrorHandler class * Convert static method generic_error_handling to function instead
2016-04-12Removed time logging from mails_resourceBruno Wagner
Removed the time logging, it can be put adhoc when we want to test a specific case
2016-04-11Fixed pep8 warningBruno Wagner
2016-04-11Removed general timings from methodsBruno Wagner
I kept the logging functions so we can log times for tests and to investigate issues, but I removed all usages of them until someone needs them
2016-04-08Issue #431: extractes the generic handling for error callbacks in init and ↵Zara Gebru
handles login, logout, mail and tags resources
2016-04-08Issue #431: add errback on logoutZara Gebru
2016-04-06Issue #292: Fix functional testsFelix Hammerl
2016-04-06Remove unused step from functional testsFelix Hammerl
2016-04-06Issue #292: add fingerprint to user settings resourceZara Gebru
2016-04-06Revert "use a locale that is always available and supports UTF-8"Christoph Kluenter
We should use en_US.UTF-8 because thats what works on snap-ci. Now we need to find out why go does not have en_US.UTF-8 anymore. This reverts commit 6feeaf5c5cb5d22de079d68fb10bb9403a8412ed.
2016-04-06Revert "use a working utf-8 locale in more places"Christoph Kluenter
This reverts commit 54e946eff87a24122997a109f946dc649c8f0498.
2016-04-06use a working utf-8 locale in more placesChristoph Kluenter
2016-04-06use a locale that is always available and supports UTF-8Christoph Kluenter
This fixes #676 Problem is, that en_US.UTF-8 might not be always available. Compass then falls back to C which is not UTF-8 capabable and fails on some asian strings we have. But C.UTF-8 is always available.
2016-04-05Issue #648: Refactor mail-listFelix Hammerl
2016-04-04Migrate ImapAccount to AccountTulio Casagrande
Migrate all usage of leap.ImapAccount to leap.Account We had to adapt some calls because of signature changes and, because we need the Account to be initialized before moving on, we are directly using the deferred initialization that the account has See: https://github.com/leapcode/leap_mail/pull/228
2016-03-29Removes ssl warnnings from log.Thais Siqueira
2016-03-24[fix] remove pycryptopp dependencyKali Kaneko (leap communications)
cryptography is now a hard dependency, so we are removing the use of pycryptopp.
2016-03-24Issue #656: Fix sandbox fontsFelix Hammerl
Add CORS headers to sandbox resource Add OpenSans in normal font weight (400) to the sandbox CSS
2016-03-24Work in progress: Fix loading webfonts in the sandbox.Tobias Adam
2016-03-22Fixes lint.Thais Siqueira
2016-03-22Adds changes to run load test on current version.Thais Siqueira
2016-03-22Issue #649: Fix functional testsFelix Hammerl
2016-03-16freezing Twisted to 15.5.0 for the tests -- fixing build.Christoph Kluenter
need to evaluate what to do. But this at least fixes the tests for now.
2016-03-15Issue #620: Refactor read viewFelix Hammerl
2016-03-11Sets SSL certifications to false.Thais Siqueira
Issue #213
2016-03-11Fixes pep8 errors and update requests to 2.9.1.Thais Siqueira
Issue #213
2016-03-11Update locust test to run after xsrf token implementation.Thais Siqueira
- Adds port 8089 to vagrant file to be able to run inside vm. - Update requests version to 2.4.1, the minimum required version by locust. - Adds the xsrf token on locust post request headers. Issue #213
2016-03-09Issue #617: Add sandbox to user-agentFelix Hammerl
2016-03-09Issue #617: Serve content from Sandbox resourceFelix Hammerl
2016-03-04Fix: Logout calls session expireFolker Bernitt
- Deferred was not handled as required - Test did not assert call to expire
2016-03-02adding default date if not given in the mail header, for search index -- ↵NavaL
fixing build
2016-03-01Fix tests after change on OpenPGPKey.get_json APIGiovane
- The main identifier of a key now is the fingerprint, not the id anymore - The address is not required anymore when creating the json
2016-03-01Changed the github link to the new oneJefferson Stachelski
2016-03-01Fix test: Add missing date fieldFelix Hammerl
2016-02-25serving the client directly, as the current dependency on proxy strips out ↵NavaL
xsrf cookies -fixing functional test Issue #612
2016-02-25only adding feature resource in root_resource test -- fixing buildNavaL
Issue #612
2016-02-25changed logout to postNavaL
Issue #612
2016-02-25Backend and frontend protection against csrf attacks:NavaL
- root resources changes the csrf token cookie everytime it is loaded, in particular during the intestitial load during login - it will also add that cookie on single user mode - initialize will still load all resources - but they you cant access them if the csrf token do not match - all ajax calls needs to add the token to the header - non ajax get requests do not need xsrf token validation - non ajax post will have to send the token in as a form input or in the content Issue #612
2016-02-24Create a new deferred for all IMAPAccount callsFolker Bernitt
- Issue #615 - IMAPAccount ctor reuses same instance for all accounts
2016-02-24Recreate session on soledad problemsFolker Bernitt
- Issue #615 - invalid token raised by soledad after timeout, if we see this, recreate the session on next login
2016-02-23Only do initial sync on session creationFolker Bernitt
- Issue #615 - Fixed some long broken but not failing tests
2016-02-23Improve stopwatch outputFolker Bernitt
- measures time and cpu time and displays percentage