summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/services
AgeCommit message (Collapse)Author
2015-09-21#442 Creates feedback service that create tickets on leap web.Giovane
2015-09-04Prepare removing SoledadQuerier from Mailkaeff
Discovered that Mail#save was still using SoledadQuerier. There were 3 methods using it: - update_tags: Covered by MailService -> moved test & fixed impl - mark_as_read: Already implemented on MailService -> removed - mark_as_unread: Still needs to be moved - remove_all_tags: Unused -> deleted - mark_as_not_recent: Unused -> deleted Issue: #432
2015-09-04Remove SoledadQuerier from Serviceskaeff
- Issues: #449, #432
2015-09-02Revert "[refactor] Move search mails into searchable_mailstore"Victor Shyba
This reverts commit 97b50f5b886928c70edcbcea149ced10f7065f19.
2015-09-02Download attachments from mail store instead of querierFolker Bernitt
- Issue #435 - Improved error handling of attachment resource
2015-08-30[refactor] Move search mails into searchable_mailstoreVictor Shyba
This is needed in order to be able to remove search engine from mail_service. As #430
2015-08-30updating index after remove is unnecessary nowVictor Shyba
2015-08-30[refactor] use mailstore to delete mails foreverVictor Shyba
It was using querier, which is being deprecates as #432
2015-08-30mail_exists should not fetch bodyVictor Shyba
While checking for existence of a mail, we dont need to fetch all stuff, just a positive hit is enough.
2015-08-25[refactor] goodbye mailboxes.py and mailbox.pyVictor Shyba
All responsabilities are now provided by mail_store. -- Issue #440
2015-08-25[refactor] remove mailbox referencesVictor Shyba
Extracted listener logic and removed remaining mailboxes references Issues -- #439 -- #440
2015-08-24[bug] start mailboxes properlyVictor Shyba
mail_store is needed as parameter, not querier --- Issue #439
2015-08-21Merge branch 'display-sent-emails-as-read' of ↵Folker Bernitt
https://github.com/rdoh/pixelated-user-agent
2015-08-21Eli: Marking sent emails as readEli Mydlarz
2015-08-19Remove poor person's debugging printskaeff
2015-08-11Fixed unit test.Folker Bernitt
2015-08-11Fixed test_tags integration test.Folker Bernitt
2015-08-11Worked on integration tests.Folker Bernitt
2015-08-11Make indexing recepients work again by fixing serialization bugKlaus Fl
2015-08-11Changed test_delete_mail.py integration test to new mail store.Folker Bernitt
- intermediate state, some tests are broken
2015-08-11Reverted changes to get tests green.Folker Bernitt
2015-08-11Fixed test_mailboxes.py test.Folker Bernitt
2015-08-11First steps migrating mail service to new data model.Folker Bernitt
2015-08-11Added mail store to mail service.Folker Bernitt
2015-08-11mailbox collision shouldnt cancel operationVictor Shyba
2015-08-11Skipped test_welcome_mail integration test.Folker Bernitt
- Fixed test_mailbox.py
2015-08-11Fixed test_delete_mail integration test.Folker Bernitt
2015-08-11Fixed test_mark_as_read_unread.py.Folker Bernitt
2015-08-11Fixed MarkAsReadUnreadTest#test_mark_single_as_read and underlying ↵Folker Bernitt
implementation.
2015-08-11yields and small changes to make incoming mail fetching workVictor Shyba
2015-08-11migrates smtp, workingVictor Shyba
2015-08-11fix integration.test_draftsVictor Shyba
2015-08-11fixing integration.test_tagsVictor Shyba
2015-08-11fixing querier integration testsVictor Shyba
2015-08-11Fixing integration tests.Folker Bernitt
2015-08-11All mails now displays mails.Folker Bernitt
2015-08-11prepare mailbox tests, missing property functionality on mail.py onlyVictor Shyba
2015-08-11fix pep8 in order to run testsVictor Shyba
2015-08-11Added some more yields to the soledad wrapper code.Folker Bernitt
2015-08-11Working on pixelated-user-agent.Folker Bernitt
- Startup works till all mails are queried
2015-06-09AttachmentsResource don't need querier anymore, RootResource doesn't need it tooBruno Wagner
2015-06-07smtp with better variable naming and random portVictor Shyba
2015-06-05Added creation of input mail from python messageBruno Wagner
That way we don't need extra logic for the welcome mail, we just have to read the file and send the contents to the input mail parser and that's it. Also moved the logic of adding a welcome mail to the mailboxes because it has knowledge of mailbox methods anyways.
2015-06-04removing unnecessary extra queryVictor Shyba
2015-04-09Adds service to move mails to inboxRoberto Soares
2015-03-22checks if a mailbox is fresh (uid is 0).Victor Shyba
If so, we are able to put welcome mail on INBOX after checking it -- Issue #334
2015-03-18making map and filter explicitVictor Shyba
2015-03-18MailService is now an objectBruno Wagner
2015-02-27Refactored out tag service and replaced mail normalization with built-in ↵Bruno Wagner & Victor Shyba
parseaddr Also made some minor fixes based on pylint output
2015-02-22#290 no need to remove all tags when moving to thrashDuda Dornelles