aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Make incineration horizon configurableGeorge Claghorn2018-10-062-0/+3
|
* Terminate processing if inbound email is marked as delivered in callbackGeorge Claghorn2018-10-062-10/+9
|
* Compare addresses case-insensitivelyGeorge Claghorn2018-10-031-2/+2
|
* Skip after callbacks on terminateGeorge Claghorn2018-10-031-1/+1
|
* Delete .DS_Store filesGeorge Claghorn2018-10-031-0/+0
|
* Terminate processing on bounceGeorge Claghorn2018-10-031-1/+12
|
* Add ActionMailbox::Base#bounce_withGeorge Claghorn2018-10-031-0/+5
|
* Permit receiving an email fixtureGeorge Claghorn2018-10-021-0/+4
|
* Support nesting mailboxes in modulesGeorge Claghorn2018-10-011-1/+1
|
* Add a test helper for creating and routing an inbound emailGeorge Claghorn2018-10-011-1/+5
|
* Provide a loggerGeorge Claghorn2018-10-013-2/+8
|
* ActionMailroom -> ActionMailboxDavid Heinemeier Hansson2018-09-2815-79/+81
| | | | We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy.
* 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