aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | Add a test helper for creating and routing an inbound emailGeorge Claghorn2018-10-013-2/+10
| | | | | | |
| | * | | | | Provide a loggerGeorge Claghorn2018-10-013-2/+8
| | | | | | |
| | * | | | | Reflect name changeDavid Heinemeier Hansson2018-09-281-2/+2
| | | | | | |
| | * | | | | ActionMailroom -> ActionMailboxDavid Heinemeier Hansson2018-09-2860-154/+156
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy.
| | * | | | | Add rerouting optionDavid Heinemeier Hansson2018-09-284-5/+21
| | | | | | |
| | * | | | | Flesh out testingDavid Heinemeier Hansson2018-09-282-3/+21
| | | | | | |
| | * | | | | Extract MessageId concernDavid Heinemeier Hansson2018-09-284-25/+30
| | | | | | |
| | * | | | | Ensure message id is presentDavid Heinemeier Hansson2018-09-271-1/+8
| | | | | | |
| | * | | | | Inline anemic methodDavid Heinemeier Hansson2018-09-271-5/+2
| | | | | | |
| | * | | | | Convert from Parameters objectDavid Heinemeier Hansson2018-09-271-1/+1
| | | | | | |
| | * | | | | Flesh out conductor interfaceDavid Heinemeier Hansson2018-09-2710-43/+87
| | | | | | |
| | * | | | | Sharpen terminologyDavid Heinemeier Hansson2018-09-271-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | raw_email_content => source
| | * | | | | Provide a basic admin interfaceDavid Heinemeier Hansson2018-09-276-4/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | BEHOLD THE CONDUCTOR!
| | * | | | | 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-272-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Probably need a way to either provide more email on the nature of a bounce or have a separate status code for "undeliverable".
| | * | | | | Match file and class nameDavid Heinemeier Hansson2018-09-271-0/+0
| | | | | | |
| | * | | | | Add TODOs based on review callDavid Heinemeier Hansson2018-09-272-0/+4
| | | | | | |
| | * | | | | Did thatDavid Heinemeier Hansson2018-09-251-1/+0
| | | | | | |
| | * | | | | Handle all recipients of an email as part of the routingDavid Heinemeier Hansson2018-09-252-3/+17
| | | | | | |
| | * | | | | Extract and associate message_id with newly created inbound emailsDavid Heinemeier Hansson2018-09-257-6/+36
| | | | | | |
| | * | | | | Add simply bounce handlingDavid Heinemeier Hansson2018-09-212-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bouncing is not an exceptional state, so let's not use exceptions to deal with it.
| | * | | | | Remember to deal with message_idDavid Heinemeier Hansson2018-09-201-0/+1
| | | | | | |
| | * | | | | 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-204-4/+89
| | | | | | |
| | * | | | | Use proper defaultDavid Heinemeier Hansson2018-09-201-1/+1
| | | | | | |
| | * | | | | Test single and multiple string routesDavid Heinemeier Hansson2018-09-191-8/+30
| | | | | | |
| | * | | | | Less fancyDavid Heinemeier Hansson2018-09-193-8/+7
| | | | | | |
| | * | | | | Allow inbound emails to be created on the flyDavid Heinemeier Hansson2018-09-196-12/+22
| | | | | | |
| | * | | | | 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
| | | | | | |
| | * | | | | Needless local varDavid Heinemeier Hansson2018-09-191-2/+1
| | | | | | |
| | * | | | | You're not paying by the characterDavid Heinemeier Hansson2018-09-191-1/+1
| | | | | | |
| | * | | | | Anemic test better covered in mailbox/routing_test.rbDavid Heinemeier Hansson2018-09-191-9/+0
| | | | | | |
| | * | | | | Extract routable concernDavid Heinemeier Hansson2018-09-192-11/+14
| | | | | | |
| | * | | | | Routing is a named concept nowDavid Heinemeier Hansson2018-09-195-11/+11
| | | | | | |
| | * | | | | Test routing runs through a job kicked off by the inbound emailDavid Heinemeier Hansson2018-09-191-0/+7
| | | | | | |
| | * | | | | Temp routing directly to named controllerDavid Heinemeier Hansson2018-09-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Need the singleton to live somewhere proper.
| | * | | | | Everyone needs job testingDavid Heinemeier Hansson2018-09-193-5/+2
| | | | | | |
| | * | | | | 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).
| | * | | | | Simpler class definitionDavid Heinemeier Hansson2018-09-191-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't actually remember why we've used the explicit module wrapper before?
| | * | | | | Add easy way to get logging information inline for test failure diagnosisDavid Heinemeier Hansson2018-09-191-0/+4
| | | | | | |
| | * | | | | Attach a concrete router to the root mailbox and use itDavid Heinemeier Hansson2018-09-196-14/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | | | | | |
| | * | | | | Add incineration by defaultDavid Heinemeier Hansson2018-09-195-0/+76
| | | | | | |
| | * | | | | Follow db table conventionDavid Heinemeier Hansson2018-09-191-1/+1
| | | | | | |
| | * | | | | Tmp filesDavid Heinemeier Hansson2018-09-191-0/+1
| | | | | | |
| | * | | | | Make debugger available in testingDavid Heinemeier Hansson2018-09-191-0/+2
| | | | | | |
| | * | | | | Missing suffixDavid Heinemeier Hansson2018-09-191-0/+0
| | | | | | |
| | * | | | | Only deliver pending emails to the mailroomDavid Heinemeier Hansson2018-09-183-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes it easier to test without triggering this behavior.