Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-11 | tests for mail.mail module: Message | Kali Kaneko | |
2015-02-11 | cleanup imap implementation | Kali Kaneko | |
2015-02-11 | make outgoing a new submodule | Kali Kaneko | |
2015-02-11 | MessageCollections + MailboxIndexer | Kali Kaneko | |
2015-02-11 | Serializable Models + Soledad Adaptor | Kali Kaneko | |
2015-02-11 | New keymanager async API | Ruben Pollan | |
2015-02-11 | adapt to soledad 0.7 async API | Kali Kaneko | |
2015-02-11 | specify not syncable shared db | Kali Kaneko | |
2015-01-05 | Port `enum` to `enum34` | Ruben Pollan | |
2014-11-25 | Move SMTP gateway str assertion to inside OutgoingMail. | drebs | |
2014-11-17 | Moving encrypt, sign and send logic from gateway (SMTP) to a MailService | Duda Dornelles | |
2014-11-04 | Discover public key via attachment | Ruben Pollan | |
2014-10-13 | Get keys from OpenPGP email header | Ruben Pollan | |
2014-10-12 | Update docstrings | Ruben Pollan | |
2014-09-16 | The get_key cache now it's automagical | Ruben Pollan | |
2014-09-10 | add test for empty mailbox creation | Kali Kaneko | |
2014-09-09 | addMailbox shouldn't accept empty names since it makes it impossible to ↵ | Duda Dornelles | |
retrieve it later | |||
2014-09-09 | add comment | Kali Kaneko | |
2014-09-09 | return the deferred from sendMessage | Kali Kaneko | |
in this way we allow to add more callbacks to the chain. | |||
2014-09-03 | split tests in different modules | Kali Kaneko | |
2014-09-03 | fix and migrate tests to trial | Kali Kaneko | |
We cannot use setUpClass when running tests with trial. But, after all, it's not *so* expensive to initialize a new soledad instance (since we'll be mostly using the memstore for the tests). | |||
2014-09-03 | remove uid from signature | Kali Kaneko | |
2014-08-26 | remove unneeded imports | Kali Kaneko | |
2014-08-21 | Fixed some PEP8 warnings on the messages file | Bruno Wagner Goncalves | |
2014-08-21 | MessageCollection iterators must instantiate LeapMessage with the collection | Bruno Wagner Goncalves | |
2014-08-21 | Added fallback in case the gpg binary is not found on the PATH | Bruno Wagner Goncalves | |
2014-08-21 | Find the gpg binary on the system, even through symlinks | Bruno Wagner Goncalves | |
2014-08-21 | On the mac, the tempdir is not created at /tmp, so checking the tempdir ↵ | Bruno Wagner Goncalves | |
format instead | |||
2014-03-26 | Merge remote-tracking branch ↵ | Tomás Touceda | |
'refs/remotes/kali/bug/bad-object-in-save-callback' into develop | |||
2014-03-26 | fix wrong object being passed in the messageSaved callback | Kali Kaneko | |
this was the result of a bad merge during the last fetch refactor. | |||
2014-03-18 | Signal the UI in case the soledad token is invalid when syncing (#5191). | drebs | |
2014-03-17 | Merge remote-tracking branch 'refs/remotes/kali/feature/keepprocessing' into ↵ | Tomás Touceda | |
develop | |||
2014-03-10 | keep processing after decoding errors during fetch | Kali Kaneko | |
2014-03-05 | Merge remote-tracking branch 'refs/remotes/kali/bug/inc-recursion-limit' ↵ | Tomás Touceda | |
into develop | |||
2014-03-05 | workaround attempt for the recursionlimit bug with qtreactor. | Kali Kaneko | |
Increasing the recursion limit by an order of magnitude here seems to allow a fetch of a mailbox with 500 mails. See #5196 for discussion of alternatives. | |||
2014-02-27 | Merge remote-tracking branch 'refs/remotes/kali/feature/literal_plus' into ↵ | Tomás Touceda | |
develop | |||
2014-02-27 | rename all fdocs when folder is renamed | Kali Kaneko | |
2014-02-26 | Implement non-synchronizing literals (rfc2088) Closes: #5190 | Kali Kaneko | |
This also paves the way to MULTIAPPEND IMAP Extension (rfc3502) Related to: Feature #5182 | |||
2014-02-25 | fix unread notification to UI | Kali Kaneko | |
2014-02-25 | Workaround for broken notify-after-copy | Kali Kaneko | |
2014-02-20 | Fix regression on "duplicate drafts" issue. | Kali Kaneko | |
Not a permanent solution, but it looks for fdoc matching a given msgid to avoid duplication of drafts in thunderbird folders. | |||
2014-02-20 | mail parsing performance improvements | Kali Kaneko | |
Although the do_parse function is deferred to threads, we were actually waiting till its return to fire the callback of the deferred, and hence the "append ok" was being delayed. During massive appends, this was a tight loop contributing as much as 35 msec, of a total of 100 msec average. Several ineficiencies are addressed here: * use pycryptopp hash functions. * avoiding function calling overhead. * avoid duplicate call to message.as_string * make use of the string size caching capabilities. * avoiding the mail Parser initialization/method call completely, in favor of the module helper to get the object from string. Overall, these changes cut parsing to 50% of the initial timing by my measurements with line_profiler, YMMV. | |||
2014-02-20 | ignore keyerror on deletion | Kali Kaneko | |
2014-02-20 | catch empty rdoc | Kali Kaneko | |
2014-02-20 | catch stopiteration | Kali Kaneko | |
2014-02-20 | fix rdoc duplication | Kali Kaneko | |
2014-02-20 | fix attribute error on debug line | Kali Kaneko | |
2014-02-18 | catch soledad error while updating mbox doc | Kali Kaneko | |
2014-02-17 | avoid unneeded db index updates and rdoc creation | Kali Kaneko | |
2014-02-17 | defer fetch-all-flags too | Kali Kaneko | |