aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Extract MessageId concernDavid Heinemeier Hansson2018-09-281-1/+1
|
* active_storage:install may halt chain if its already been runDavid Heinemeier Hansson2018-09-271-1/+1
|
* Make an email that fails to deliver to a mailbox as bouncedDavid Heinemeier Hansson2018-09-271-0/+2
| | | | Probably need a way to either provide more email on the nature of a bounce or have a separate status code for "undeliverable".
* Handle all recipients of an email as part of the routingDavid Heinemeier Hansson2018-09-251-2/+7
|
* Extract and associate message_id with newly created inbound emailsDavid Heinemeier Hansson2018-09-251-4/+6
|
* Add simply bounce handlingDavid Heinemeier Hansson2018-09-211-2/+2
| | | | Bouncing is not an exceptional state, so let's not use exceptions to deal with it.
* Stick with match conceptDavid Heinemeier Hansson2018-09-201-2/+2
|
* StyleDavid Heinemeier Hansson2018-09-201-1/+0
|
* Expand router with real routing object and 4-way address optionsDavid Heinemeier Hansson2018-09-203-4/+46
|
* Use proper defaultDavid Heinemeier Hansson2018-09-201-1/+1
|
* Less fancyDavid Heinemeier Hansson2018-09-191-2/+2
|
* Allow inbound emails to be created on the flyDavid Heinemeier Hansson2018-09-191-5/+11
|
* before_processing should run before the inbound email has been marked as ↵David Heinemeier Hansson2018-09-191-2/+2
| | | | processing
* Extract method to encapsulate status tracking on inbound emailDavid Heinemeier Hansson2018-09-191-8/+14
|
* Ensure raw email is created firstDavid Heinemeier Hansson2018-09-191-5/+4
| | | | Otherwise jobs hanging off the InboundEmail won't be able to access the Active Storage data (as it won't have been uploaded yet).
* Attach a concrete router to the root mailbox and use itDavid Heinemeier Hansson2018-09-193-12/+29
| | | | Don't think this is how it's going to stay. Doesn't feel like the right place for it.
* Included in test helper nowDavid Heinemeier Hansson2018-09-191-2/+0
|
* Only deliver pending emails to the mailroomDavid Heinemeier Hansson2018-09-181-2/+2
| | | | Makes it easier to test without triggering this behavior.
* Make a note for tying inbound email to exceptionDavid Heinemeier Hansson2018-09-181-0/+2
| | | | Then InboundEmail doesn't need to serialize or track the exception that went with it. The arrow will point the other way.
* Add callbacksDavid Heinemeier Hansson2018-09-182-2/+35
|
* More scalable name!David Heinemeier Hansson2018-09-181-2/+2
| | | | There'll probably be other concerns we need to do around the processing.
* Process inbound emails with state and exceptionsDavid Heinemeier Hansson2018-09-181-1/+15
|
* Use a test helper to create fixtures rather than rely on them being predefinedDavid Heinemeier Hansson2018-09-182-15/+15
| | | | Too much hassle to manage all the steps compared to just pointing to an .eml fixture and having it setup for you.
* First end-to-end rickety testDavid Heinemeier Hansson2018-09-171-1/+3
|
* WIP: RouterDavid Heinemeier Hansson2018-09-173-0/+36
|
* Base -> MailboxDavid Heinemeier Hansson2018-09-173-3/+3
| | | | Won't need Base and can separate routing from execution 👍
* Action Mailbox -> Action MailroomDavid Heinemeier Hansson2018-09-177-24/+24
|
* SkeletonDavid Heinemeier Hansson2018-09-175-0/+56