Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add addresses convenience method and a test for it | David Heinemeier Hansson | 2018-11-05 | 1 | -0/+21 |
| | |||||
* | Extract Mail-bound methods into mail_ext for future upstream work | David Heinemeier Hansson | 2018-11-05 | 5 | -6/+17 |
| | |||||
* | Merge pull request #1 from basecamp/ingresses | George Claghorn | 2018-11-05 | 4 | -7/+58 |
|\ | | | | | Accept inbound emails from a variety of ingresses | ||||
| * | Always emit enhanced SMTP status codes | George Claghorn | 2018-11-05 | 1 | -11/+12 |
| | | |||||
| * | The ingress username is constant | George Claghorn | 2018-11-05 | 1 | -4/+6 |
| | | |||||
| * | Only load the AWS SDK when the Amazon ingress is configured | George Claghorn | 2018-11-05 | 1 | -1/+12 |
| | | |||||
| * | Read ingress passwords/API keys from encrypted credentials | George Claghorn | 2018-11-05 | 2 | -0/+2 |
| | | | | | | | | Fall back to ENV for people who prefer that approach. | ||||
| * | Add a Rake task for piping to the Postfix ingress | George Claghorn | 2018-10-19 | 1 | -0/+38 |
| | | |||||
| * | Merge branch 'master' into ingresses | George Claghorn | 2018-10-18 | 3 | -7/+7 |
| |\ | |||||
| * | | Don't require Postfix to send form data | George Claghorn | 2018-10-18 | 1 | -7/+4 |
| | | | |||||
* | | | Validate address on route definition | George Claghorn | 2018-10-30 | 1 | -3/+9 |
| |/ |/| | |||||
* | | Revert "Remove unnecessary TODO" | George Claghorn | 2018-10-17 | 1 | -0/+1 |
| | | | | | | | | This reverts commit 89ada1977ce648b2121cad7cfb95af9686ea016b. | ||||
* | | Remove needless autoloads | George Claghorn | 2018-10-17 | 1 | -2/+0 |
| | | | | | | | | ActionMailbox::Callbacks and ActionMailbox::Routing are eagerly loaded where they're used. | ||||
* | | Shush various interpreter warnings | George Claghorn | 2018-10-17 | 2 | -2/+2 |
| | | |||||
* | | Use a class attribute | George Claghorn | 2018-10-17 | 1 | -4/+6 |
| | | |||||
* | | Remove unnecessary TODO | George Claghorn | 2018-10-17 | 1 | -1/+0 |
|/ | | | | Exception handlers are executed in the context of a mailbox instance and already have access to the inbound email. | ||||
* | Style | George Claghorn | 2018-10-11 | 1 | -1/+1 |
| | |||||
* | Move installation tasks to lib/tasks/install.rake | George Claghorn | 2018-10-11 | 2 | -17/+19 |
| | |||||
* | Make incineration horizon configurable | George Claghorn | 2018-10-06 | 2 | -0/+3 |
| | |||||
* | Terminate processing if inbound email is marked as delivered in callback | George Claghorn | 2018-10-06 | 2 | -10/+9 |
| | |||||
* | Compare addresses case-insensitively | George Claghorn | 2018-10-03 | 1 | -2/+2 |
| | |||||
* | Skip after callbacks on terminate | George Claghorn | 2018-10-03 | 1 | -1/+1 |
| | |||||
* | Delete .DS_Store files | George Claghorn | 2018-10-03 | 1 | -0/+0 |
| | |||||
* | Terminate processing on bounce | George Claghorn | 2018-10-03 | 1 | -1/+12 |
| | |||||
* | Add ActionMailbox::Base#bounce_with | George Claghorn | 2018-10-03 | 1 | -0/+5 |
| | |||||
* | Permit receiving an email fixture | George Claghorn | 2018-10-02 | 1 | -0/+4 |
| | |||||
* | Support nesting mailboxes in modules | George Claghorn | 2018-10-01 | 1 | -1/+1 |
| | |||||
* | Add a test helper for creating and routing an inbound email | George Claghorn | 2018-10-01 | 1 | -1/+5 |
| | |||||
* | Provide a logger | George Claghorn | 2018-10-01 | 3 | -2/+8 |
| | |||||
* | ActionMailroom -> ActionMailbox | David Heinemeier Hansson | 2018-09-28 | 15 | -79/+81 |
| | | | | We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy. | ||||
* | Extract MessageId concern | David Heinemeier Hansson | 2018-09-28 | 1 | -1/+1 |
| | |||||
* | 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 | 1 | -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 routing | David Heinemeier Hansson | 2018-09-25 | 1 | -2/+7 |
| | |||||
* | Extract and associate message_id with newly created inbound emails | David Heinemeier Hansson | 2018-09-25 | 1 | -4/+6 |
| | |||||
* | Add simply bounce handling | David Heinemeier Hansson | 2018-09-21 | 1 | -2/+2 |
| | | | | Bouncing is not an exceptional state, so let's not use exceptions to deal with it. | ||||
* | 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 | 3 | -4/+46 |
| | |||||
* | Use proper default | David Heinemeier Hansson | 2018-09-20 | 1 | -1/+1 |
| | |||||
* | Less fancy | David Heinemeier Hansson | 2018-09-19 | 1 | -2/+2 |
| | |||||
* | Allow inbound emails to be created on the fly | David Heinemeier Hansson | 2018-09-19 | 1 | -5/+11 |
| | |||||
* | 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 |
| | |||||
* | 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). | ||||
* | Attach a concrete router to the root mailbox and use it | David Heinemeier Hansson | 2018-09-19 | 3 | -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 now | David Heinemeier Hansson | 2018-09-19 | 1 | -2/+0 |
| | |||||
* | Only deliver pending emails to the mailroom | David Heinemeier Hansson | 2018-09-18 | 1 | -2/+2 |
| | | | | Makes it easier to test without triggering this behavior. | ||||
* | 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 | 2 | -2/+35 |
| |