Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Resurrect installer. | Kasper Timm Hansen | 2018-12-18 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Running `./bin/rails generate mailbox application --no-test-framework` generates: ``` class ApplicationMailbox < ApplicationMailbox def process end end ``` which is not correct for the application mailbox. It shouldn't respond to process but it should contain a routing hint. Generally generators aren't meant to be used like the previous commit. The mailbox generator can certainly add in the ApplicationMailbox if missing, but it shouldn't be called with "application" as an argument. Also adds back auto inserting an `ingress` config line in `config/environmnets/production.rb`. Fixes #13. [Kasper Timm Hansen, Andrew Babichev] | ||||
* | Fix Rails generators | Dino Maric | 2018-12-15 | 1 | -1/+1 |
| | | | | | 1.Don't generate ApplicationMailboxTest when executing installer 2. Hookup test_unit, so console doesn't throw errors | ||||
* | Uses the new generator to install ApplicationMailbox in ↵ | David Gil | 2018-12-14 | 1 | -4/+3 |
| | | | | action_mailbox:install rake | ||||
* | Add installer | David Heinemeier Hansson | 2018-12-13 | 1 | -9/+10 |
| | |||||
* | Kernel#exit accepts a boolean | George Claghorn | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | YAGNI user agent customization | George Claghorn | 2018-11-25 | 1 | -6/+5 |
| | |||||
* | Fix printing | George Claghorn | 2018-11-25 | 1 | -2/+2 |
| | |||||
* | Correct require | George Claghorn | 2018-11-25 | 1 | -1/+1 |
| | |||||
* | Extract ActionMailbox::PostfixRelayer | George Claghorn | 2018-11-25 | 1 | -29/+8 |
| | |||||
* | Permit redirecting stderr to /dev/null to shush deprecation warnings | George Claghorn | 2018-11-15 | 1 | -6/+12 |
| | |||||
* | Read STDIN to upload it | George Claghorn | 2018-11-14 | 1 | -1/+2 |
| | | | | http.rb can't stream from pipes. | ||||
* | Emit a transient error code for incorrect usage | George Claghorn | 2018-11-08 | 1 | -5/+3 |
| | |||||
* | 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 |
| | |||||
* | Add a Rake task for piping to the Postfix ingress | George Claghorn | 2018-10-19 | 1 | -0/+38 |
| | |||||
* | 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 |
| | |||||
* | ActionMailroom -> ActionMailbox | David Heinemeier Hansson | 2018-09-28 | 1 | -4/+4 |
| | | | | We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy. | ||||
* | active_storage:install may halt chain if its already been run | David Heinemeier Hansson | 2018-09-27 | 1 | -1/+1 |
| | |||||
* | Use a test helper to create fixtures rather than rely on them being predefined | David Heinemeier Hansson | 2018-09-18 | 1 | -15/+2 |
| | | | | Too much hassle to manage all the steps compared to just pointing to an .eml fixture and having it setup for you. | ||||
* | Action Mailbox -> Action Mailroom | David Heinemeier Hansson | 2018-09-17 | 1 | -5/+5 |
| | |||||
* | Skeleton | David Heinemeier Hansson | 2018-09-17 | 1 | -0/+30 |