summaryrefslogtreecommitdiff
path: root/service
AgeCommit message (Collapse)Author
2015-11-24Issue #494 - Bruno/Jeff Fixed the encoding testsJefferson Stachelski
2015-11-24Issue #536 - Refactoed search_addressesJefferson Stachelski
2015-11-24pixelated.adapter.errors is not used anymore.Christoph Kluenter
It was removed in e68f667
2015-11-23Return 422 if deletion failedVictor Shyba
This is needed for protecting against concurrent saves on drafts. --Issue #512
2015-11-23Simplify controller logic on PUT draftVictor Shyba
It was checking for mail existence, but thats redundant since its also checking if draft_id was being sent. Also, its service responsibility to ensure operation consistency, not the controller. --Issue #512
2015-11-23Making explicit the goal for test that checks double deletionVictor Shyba
It had no assert, making it confusing. With a failure clause on the except handler we show that its not supposed to raise errors --Issue #512
2015-11-23Removes DuplicatedDraftExceptionVictor Shyba
--Issue #512
2015-11-23Removing test, since this scenario doesnt exists anymoreVictor Shyba
--Issue #512
2015-11-23Checking on deletion errors on drafts isnt neededVictor Shyba
As delete_mail checks for mail_id there will be no more need to create errors. --Issue #512
2015-11-23No more 'need to create before delete'Victor Shyba
Checking for mdoc existence before trying to delete a deleted mail. --Issue #512
2015-11-23Add test for mail deletion with invalid mail idFolker Bernitt
- Issue #511
2015-11-20Issue #526 - Changed way that we use whooshJefferson Stachelski
Now we are captilizing string for don't miss name that starts with an uppercase letter
2015-11-19Fixing tests #531Giovane
2015-11-19Move 'From' initialization to InputMail factory. w/ @bwagner #531Giovane
2015-11-18Issue #494 - Fixed reply when the replayer is the senderJefferson Stachelski
2015-11-18Issue #526 - Fixed contacts query input and results to only return matched termsBruno Wagner
2015-11-18Issue #511 - Don't deleting if mail is NoneJefferson Stachelski
2015-11-17Issue #495 Giovane/Jeff: Fixed from undefinedJefferson Stachelski
Sent mail doesn't have a from field, so now we are adding it
2015-11-16Issue #525 - Fixed the space on mail addressJefferson Stachelski
Doing a trim on every recipient string
2015-11-13Merge pull request #521 from rdoh/remove_save_draft_buttonGiovane Liberato
merge "remove save draft button, related css and js"
2015-11-13Issue #523 - Created python test for arhive mailJefferson Stachelski
2015-11-13Issue #523 - Created an archive mail buttonJefferson Stachelski
2015-11-12remove save draft button, related css and jsRobin Doherty
2015-11-11Ignore file generated during test executionReinaldo de Souza Jr
2015-11-11removing dead code from InputMailVictor Shyba
2015-11-11unhandled errors were not being logged and generated no response backVictor Shyba
2015-11-11remove commented codeVictor Shyba
2015-11-10Fix the problem when leap doesn't found body_phashJefferson Stachelski
2015-11-10refactor unit testsw00
don't use initialize method of root_resource in test
2015-11-09use mail_service to inject account_email into root_resourcesw00
instead of using leap_session, mail_service can be used to get the account email.
2015-11-09template user's email address into titlesw00
this should solve https://github.com/pixelated/pixelated-user-agent/issues/246 needed to inject leap_session into root resource to access user email on request.
2015-11-06Refactor - Removed class SoledadSessionJefferson Stachelski
The SoledadSession class was removed and some methods implemented there was moved to LeapSessionFactory and LeapProvider
2015-11-04Issue #499 - removed the local SMTPJefferson Stachelski
2015-11-04Add error handling to MailSenderFolker Bernitt
- Issue #499
2015-11-04Enable new MailSender and disable the local smtp oneFolker Bernitt
- Issue #499
2015-11-04Change str email to twisted.mail.smtp.UserFolker Bernitt
- Issue #499 - leap.mail relies on this
2015-11-04Instantiate new MailSender in ServicesFolker Bernitt
- Issue #499 - Some smaller refactorings - Extract smtp cert download to own class
2015-11-03Issue #499 - Fixed pep8Jefferson Stachelski
2015-11-03Issue #499 Moved remote smtp configurationBruno Wagner
We removed the common parts from the bitmask libraries smtp and adapted the tests. We also advanced the new mail sender implementation, but it is coupled to the twisted.mail.smtp.User currently and we need to adapt leap mail to remove this dependency
2015-11-03[#508] Making search also work with substrings - pairing w/ @pereiragisleneGiovane
2015-11-03Add new MailSender based on OutgoingMailFolker Bernitt
- Issue #499 - No longer needs local smtp port
2015-11-03Rename MailSender to LocalSmtpMailSenderFolker Bernitt
- Issue #499
2015-10-29Filter too short input when generating mailsFolker Bernitt
- Subjects less than 3 words caused problems with markov chain
2015-10-28Add markov-generate to load-mailsFolker Bernitt
- Allows to generat mails based on a sample mails - use it with: pixelated-maintenance markov-generate --seed 21 --limit 10
2015-10-27Moves welcome mail logic inside LeapSessionGiovane
2015-10-22Move interstitial to root resourceFolker Bernitt
- Issue #501 - Moves assets to startup-assets - No more switching between twisted resources at runtime
2015-10-20Refactored the welcome mail logic and add a testJefferson Stachelski
2015-10-20Revert "Add missing import for logging"kaeff
This reverts commit e3bdf2411dda9e25d87d7fb96da05a6ecfc624ee. Issue fixed in the meantime, sorry.
2015-10-20Add missing import for loggingkaeff
pixelated-maintenance failed, presumably due to 0bf81341f33ac415d48c0b012fb66c8f7df45f57.
2015-10-20Use logging variable instead of hard coded string to set logging level.Giovane