summaryrefslogtreecommitdiff
path: root/changes
AgeCommit message (Collapse)Author
2016-05-13[pkg] fold in changelog0.9.2rc4Kali Kaneko
2016-04-25[docs] add logout segfault to known issuesKali Kaneko
2016-04-19[pkg] bump version_compat with keymanager versionKali Kaneko
2016-04-19[docs] add email prefs to changelogKali Kaneko
2016-04-19[feature] add email panel to preferenceselijah
2016-04-19[docs] document bitmask.core in the changelogKali Kaneko
2016-04-07[feat] Write service tokens to a fileRuben Pollan
The thunderbird plugin will read the tokens from there. - Related: #6041
2016-03-29[doc] add entry in next-changelog for the pixelated featureKali Kaneko
2016-03-22[bug] re-download smtp certificate if needed.Kali Kaneko
the should_redownload function was only called if the pemfile was not present of the fs. - Resolves: #7869
2015-12-18[feat] adapt to use cred-based authentication for smtpKali Kaneko
2015-12-15[feat] adapt to use cred-based authentication for imapKali Kaneko
This includes getting the token for the imap authentication, and displaying it on the help window. - Resolves: #4469 - Releases: 0.10.0
2015-12-10[feat] multi-user events.Kali Kaneko
Adapt to users emitting the userid/uuid too. - Resolves: #7656 - Releases: 0.10.0
2015-11-11[i18n] do not translate https label textIvan Alejandro
2015-11-11[but] Fix errback on InvalidAuthTokenRuben Pollan
- Related: #7583
2015-11-09[bug] open email help link on browserIvan Alejandro
- Resolves: #7585
2015-11-06[bug] fix set_soledad_invalid_auth_token event cb signatureKali Kaneko
2015-11-04[feat] improve msg and add margin above boxIvan Alejandro
- Related: #7552
2015-11-04[bug] fix typo on signal nameIvan Alejandro
- Resolves: #7568
2015-11-03[pkg] fold in changesIvan Alejandro
2015-11-03try to use /usr/bin/gpg1, gpg2 is broken for keygenKali Kaneko
2015-11-03[feat] add ui message to help new mail usersIvan Alejandro
Add a UI message for the user to know where to go next. This message goes away after 60 seconds or right after a MUA logs in. - Resolves: #7552
2015-11-02[docs] this was really a feature, not a bugfixKali Kaneko
2015-11-02[bug] use gpg2 binary if gpg not found. Closes: #7563Kali Kaneko
from debian stretch on, gpg will be a symlink to gpg2. this is currently failing if one uses dpkg-divert to make gpg2 provide /usr/bin/gpg. this solution just attempts to use gpg2 binary if the search for gpg binary fails. - Resolves: #7563 - Releases: 0.9.1
2015-11-02[pkg] merge previous feature file into new changelog formatKali Kaneko
2015-11-02[pkg] add new changelog formatKali Kaneko
2015-10-29[feat] pin mail.bitmask.net providerIvan Alejandro
- Resolves: #7542
2015-10-28[pkg] bump dependencies0.9.0Ivan Alejandro
2015-10-28[pkg] merge RCs changes and fold in filesIvan Alejandro
2015-10-07[pkg] add changes file for #7512Ivan Alejandro
2015-10-05[pkg] fold in changesIvan Alejandro
2015-10-02[bug] move assign to prevent race conditionIvan Alejandro
When the error happens too quickly, the errback is called before the assign of the callLater. And in the errback we cancel that call which gives an error. - Related: #7451
2015-10-02[bug] signal soledad bootstrap fail on initIvan Alejandro
- Resolves: #7503 Signed-off-by: Ivan Alejandro <ivanalejandro0@gmail.com>
2015-10-02[bug] remove bubble argument from the logbook NullHandlerRuben Pollan
NullHandler doesn't have anymore the argument bubble. https://pythonhosted.org/Logbook/changelog.html#version-0-11-0
2015-09-23[feat] disable email firewall on docker containersIvan Alejandro
- Related: #7471
2015-09-22[pkg] fold in changes0.9.0rc3Ivan Alejandro
2015-09-21[feature] retrieve specific smtp certificate. Closes: #4284Kali Kaneko
2015-09-18[bug] track soledad ready state on a shared placeIvan Alejandro
Connecting to the `soledad_bootstrap_finished` signal is not enough since the password change window is created after the signal is emitted, that way we were not able to tell when soledad is ready to be used. - Resolves: #7474
2015-09-18[bug] correctly return expected value for methods that check servicesKali Kaneko
these methods were returning None, and therefore breaking soledad password change (since it checks whether mail is enabled before changing soledad pass after srp pass change). - Resolves: #7470
2015-09-18[bug] show unread emails after sync completeIvan Alejandro
Right after a complete sync we show the unread emails. - Resolves: #7453
2015-09-18[feat] remove taskthread dependencyRuben Pollan
Refactor ivan's code (aa4b684d0682ff9faf1577653fa5ceabbc6e0f20) to remove the time.sleep. - Resolves: #7414
2015-09-17[bug] fix assignment of the incoming serviceKali Kaneko
the second callback was actually broken, not being called when it was supposed to be. the reason is that IncomingMail.startService returns a deferred which callback is called with the loopingCall instance only when the loopingCall is stopped.
2015-09-16[bug] authenticate logout calls to apiKali Kaneko
logout calls were not being authenticated, so we were receiving 401 return code.
2015-09-07[bug] fix argument number on window raise eventIvan Alejandro
- Resolves: #7415
2015-09-02[feat] load credentials from environment variableIvan Alejandro
Look for file defined in the `BITMASK_CREDENTIALS` env variable and load `provider`, `username` and `password` data. Trigger login if they were loaded correctly. The credentials file should look like this: [Credentials] username = my-account@my-provider.com password = secret - Resolves: #7419
2015-08-27[pkg] fold in changes0.9.0rc2Ivan Alejandro
2015-08-24[feat] allow to disable EIP on buildKali Kaneko
2015-08-24[bug] handle disabled registration, error 403.Ivan Alejandro
If the user wants to register a new account we check whether the provider allows registration or not right after getting the provider.json file and show an error msg on the wizard if not allowed. Also, there is a new signal to handle the error raised by the server if a registration attempt is made but is rejected with error 403. - Resolves: #6594
2015-08-14[bug] handle eip-config not providing locationsIvan Alejandro
Is valid for a provider not to provide locations for their gateways. - Resolves: #7281
2015-08-11[feat] add soledad sync progress to the UIIvan Alejandro
Register to Soledad's sync (send and receive) events and display the progress in the UI. - Resolves: #7353
2015-08-10[feat] Add script apply_updates.py for pyinstaller bundleRuben Pollan
apply_updates.py applies the already downloaded files from the updates folder and removes all the obsolete files from the bundle. It's meant to be use by the pyinstaller bundle. - Resolves: #7342 - Related: #5876