Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Flesh out conductor interface | David Heinemeier Hansson | 2018-09-27 | 10 | -43/+87 |
| | |||||
* | Sharpen terminology | David Heinemeier Hansson | 2018-09-27 | 1 | -4/+8 |
| | | | | raw_email_content => source | ||||
* | Provide a basic admin interface | David Heinemeier Hansson | 2018-09-27 | 6 | -4/+65 |
| | | | | BEHOLD THE CONDUCTOR! | ||||
* | active_storage:install may halt chain if its already been run | David Heinemeier Hansson | 2018-09-27 | 1 | -1/+1 |
| | |||||
* | Make an email that fails to deliver to a mailbox as bounced | David Heinemeier Hansson | 2018-09-27 | 2 | -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 name | David Heinemeier Hansson | 2018-09-27 | 1 | -0/+0 |
| | |||||
* | Add TODOs based on review call | David Heinemeier Hansson | 2018-09-27 | 2 | -0/+4 |
| | |||||
* | Did that | David Heinemeier Hansson | 2018-09-25 | 1 | -1/+0 |
| | |||||
* | Handle all recipients of an email as part of the routing | David Heinemeier Hansson | 2018-09-25 | 2 | -3/+17 |
| | |||||
* | Extract and associate message_id with newly created inbound emails | David Heinemeier Hansson | 2018-09-25 | 7 | -6/+36 |
| | |||||
* | Add simply bounce handling | David Heinemeier Hansson | 2018-09-21 | 2 | -2/+16 |
| | | | | Bouncing is not an exceptional state, so let's not use exceptions to deal with it. | ||||
* | Remember to deal with message_id | David Heinemeier Hansson | 2018-09-20 | 1 | -0/+1 |
| | |||||
* | Stick with match concept | David Heinemeier Hansson | 2018-09-20 | 1 | -2/+2 |
| | |||||
* | Style | David Heinemeier Hansson | 2018-09-20 | 1 | -1/+0 |
| | |||||
* | Expand router with real routing object and 4-way address options | David Heinemeier Hansson | 2018-09-20 | 4 | -4/+89 |
| | |||||
* | Use proper default | David Heinemeier Hansson | 2018-09-20 | 1 | -1/+1 |
| | |||||
* | Test single and multiple string routes | David Heinemeier Hansson | 2018-09-19 | 1 | -8/+30 |
| | |||||
* | Less fancy | David Heinemeier Hansson | 2018-09-19 | 3 | -8/+7 |
| | |||||
* | Allow inbound emails to be created on the fly | David Heinemeier Hansson | 2018-09-19 | 6 | -12/+22 |
| | |||||
* | before_processing should run before the inbound email has been marked as ↵ | David Heinemeier Hansson | 2018-09-19 | 1 | -2/+2 |
| | | | | processing | ||||
* | Extract method to encapsulate status tracking on inbound email | David Heinemeier Hansson | 2018-09-19 | 1 | -8/+14 |
| | |||||
* | Needless local var | David Heinemeier Hansson | 2018-09-19 | 1 | -2/+1 |
| | |||||
* | You're not paying by the character | David Heinemeier Hansson | 2018-09-19 | 1 | -1/+1 |
| | |||||
* | Anemic test better covered in mailbox/routing_test.rb | David Heinemeier Hansson | 2018-09-19 | 1 | -9/+0 |
| | |||||
* | Extract routable concern | David Heinemeier Hansson | 2018-09-19 | 2 | -11/+14 |
| | |||||
* | Routing is a named concept now | David Heinemeier Hansson | 2018-09-19 | 5 | -11/+11 |
| | |||||
* | Test routing runs through a job kicked off by the inbound email | David Heinemeier Hansson | 2018-09-19 | 1 | -0/+7 |
| | |||||
* | Temp routing directly to named controller | David Heinemeier Hansson | 2018-09-19 | 1 | -1/+1 |
| | | | | Need the singleton to live somewhere proper. | ||||
* | Everyone needs job testing | David Heinemeier Hansson | 2018-09-19 | 3 | -5/+2 |
| | |||||
* | Ensure raw email is created first | David Heinemeier Hansson | 2018-09-19 | 1 | -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 definition | David Heinemeier Hansson | 2018-09-19 | 1 | -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 diagnosis | David Heinemeier Hansson | 2018-09-19 | 1 | -0/+4 |
| | |||||
* | Attach a concrete router to the root mailbox and use it | David Heinemeier Hansson | 2018-09-19 | 6 | -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 now | David Heinemeier Hansson | 2018-09-19 | 1 | -2/+0 |
| | |||||
* | Add incineration by default | David Heinemeier Hansson | 2018-09-19 | 5 | -0/+76 |
| | |||||
* | Follow db table convention | David Heinemeier Hansson | 2018-09-19 | 1 | -1/+1 |
| | |||||
* | Tmp files | David Heinemeier Hansson | 2018-09-19 | 1 | -0/+1 |
| | |||||
* | Make debugger available in testing | David Heinemeier Hansson | 2018-09-19 | 1 | -0/+2 |
| | |||||
* | Missing suffix | David Heinemeier Hansson | 2018-09-19 | 1 | -0/+0 |
| | |||||
* | Only deliver pending emails to the mailroom | David Heinemeier Hansson | 2018-09-18 | 3 | -3/+14 |
| | | | | Makes it easier to test without triggering this behavior. | ||||
* | Inherit from ActiveJob::Base rather than ApplicationJob | David Heinemeier Hansson | 2018-09-18 | 2 | -7/+9 |
| | | | | Don't want to trigger app-specific behavior here. | ||||
* | Prefix queue name like we do routes | David Heinemeier Hansson | 2018-09-18 | 1 | -1/+1 |
| | |||||
* | Make a note for tying inbound email to exception | David Heinemeier Hansson | 2018-09-18 | 1 | -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 callbacks | David Heinemeier Hansson | 2018-09-18 | 3 | -2/+60 |
| | |||||
* | Extract mailbox test suites into feature-specific slices | David Heinemeier Hansson | 2018-09-18 | 2 | -36/+34 |
| | |||||
* | More scalable name! | David Heinemeier Hansson | 2018-09-18 | 1 | -2/+2 |
| | | | | There'll probably be other concerns we need to do around the processing. | ||||
* | Proper order | David Heinemeier Hansson | 2018-09-18 | 1 | -1/+1 |
| | |||||
* | Process inbound emails with state and exceptions | David Heinemeier Hansson | 2018-09-18 | 2 | -1/+51 |
| | |||||
* | Use rails scope by default | David Heinemeier Hansson | 2018-09-18 | 1 | -1/+1 |
| | |||||
* | Add test for unsupported content type | David Heinemeier Hansson | 2018-09-18 | 2 | -0/+9 |
| |