summaryrefslogtreecommitdiff
path: root/src/leap/mail/imap/server.py
AgeCommit message (Collapse)Author
2014-02-26Implement non-synchronizing literals (rfc2088) Closes: #5190Kali Kaneko
This also paves the way to MULTIAPPEND IMAP Extension (rfc3502) Related to: Feature #5182
2014-02-17Remove notify_new callbacks from fetch and copy.Kali Kaneko
This fixes a bug with qtreactor that was making the 'OK foo copied' not being delivered. This or something similar will probably have to be re-added, because on the current state the destination folder will not receive the notification if it's selected *before* the copy operation has finished. But in this way we have a clean slate that is working properly. The bottleneck in the copy/append operations seems to have moved to the select operation now.
2014-02-17defer fetch to threadKali Kaneko
also, dispatch query for all headers to its own method.
2014-02-17call notify in reactorKali Kaneko
2014-02-17long-due update to unittests!Kali Kaneko
So we're safe under the green lights before further rewriting. :)
2014-02-17temporarily nuke out the fetch_heders diversionKali Kaneko
2014-02-02fix missing content after in-memory addKali Kaneko
because THE KEYS WILL BE STRINGS AFTER ADDED TO SOLEDAD Can I remember that? * Fix copy from local folders * Fix copy when we already have a copy of the message in the inbox, marked as deleted. * Fix also bad deferred.succeed in add_msg when it already exist.
2014-01-30Fix copy and deletion problemsKali Kaneko
* reorganize and simplify STORE command processing * add the notification after the processing of the whole sequence
2014-01-30docstring fixesKali Kaneko
Also some fixes for None comparisons.
2014-01-28handle last_uid property in memory storeKali Kaneko
2014-01-28Unset new flag after successful writeKali Kaneko
2014-01-28move server to its own fileKali Kaneko
2013-12-26Split the near-2k loc file into more handy modules.Kali Kaneko
...aaaand not a single fuck was given that day!
2013-12-26inlineCallbacks all the things!Kali Kaneko
2013-12-26Move flags and other metadata to a separate doc.Kali Kaneko
This change will allow for quicker access times, and smaller syncs since the fields that change more often will fall in a pretty small document. For the big raw message, we only need to sync once. Also, implemented multipart interface for messages. This will need additional migration helper in --repair-mailboxes.
2013-12-26defer costly operationsKali Kaneko
2013-12-24Fix parsing of IMAP folder names (#4830).drebs
2013-12-20Limit the size of the returned messages from IMAP to MUA to 100Tomás Touceda
2013-12-20fix wrong object callKali Kaneko
2013-12-20safety catch against wrong last_uidKali Kaneko
2013-12-20use soledad_writer for puts alsoKali Kaneko
2013-12-19deferToThread unsetting recent flagKali Kaneko
2013-12-13count_foo uses expanded u1db count method.Kali Kaneko
Other fixes in the commit: * Correct the semantic for the recent flag (reset) * Minor unicode fixes. * Use a field for tracking the last_uid In general, this tries to squash all the quick and naive methods that were relying on evaluating all the message objects before returning a result. Further work is still needed, planned also for 0.5 release. get_by_index needs to be indexed too.
2013-12-11consume messages eagerlyKali Kaneko
2013-11-28use messageproducer to write messages to soledadKali Kaneko
2013-11-26fix adding msg with empty flagsKali Kaneko
2013-11-26Fix fetch iteration on empty folderKali Kaneko
2013-11-13fix mail UID indexing for non-sequential uidsKali Kaneko
2013-11-11remove printKali Kaneko
2013-11-01notify MUA of new mail as it gets added to mailboxKali Kaneko
2013-10-31Refactor out get_email_charset to leap.commonTomás Touceda
2013-10-23pep8 fix: line too long.Ivan Alejandro
2013-10-23Remove commented imports.Ivan Alejandro
2013-10-23Add encoding exception catch to avoid crashes.Ivan Alejandro
2013-10-23Move charset parser to a utils module.Ivan Alejandro
2013-10-21Default to UTF-8 when there is not charset parsed from the mail contentsTomás Touceda
2013-10-03Improve charset handling for emailTomás Touceda
2013-09-02Send UNREAD event to UI when flag changes.Kali Kaneko
Closes: #3662
2013-08-23Merge remote-tracking branch 'chiiph/bug/safe_soledad_list_indexes' into developKali Kaneko
2013-08-21Merge remote-tracking branch ↵Tomás Touceda
'drebs/feature/3487-split-soledad-into-common-client-and-server' into develop Conflicts: src/leap/mail/imap/fetch.py src/leap/mail/imap/server.py
2013-08-21Safely get the indexes from soledadTomás Touceda
2013-08-21Update to new soledad package scheme.drebs
2013-08-19Improve the unseen filterTomás Touceda
2013-08-19Signal unread emailTomás Touceda
2013-08-13catch uninitialized soledad attrKali Kaneko
2013-07-22Adapt IMAP to latest Soledad api.drebs
* Also fix some tests that where not up-to-date with code.
2013-07-22Adapt smtp relay to latest soledad and keymanager.drebs
2013-05-23provide a initialization entrypoint for client useKali Kaneko
2013-05-21cleanup and complete docsKali Kaneko
2013-05-17Functional SoledadBackedAccount and LeapMailboxesKali Kaneko
The imap service is launched from the tac file, and still needs some information to be provided in separate config files that stub much of the initialization parameters. working fetch and store methods. tested with offlineimap and thunderbird. several mailboxes might be broken.