aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/test/dummy
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2019-04-14 12:15:54 -0400
committerGitHub <noreply@github.com>2019-04-14 12:15:54 -0400
commitf480cfabcd9000b5817b610e21466299025b12d2 (patch)
tree7ff1d11bae5f2b781cd48d0465dc87d3decbae52 /actionmailbox/test/dummy
parent00b0c84a9b78ce720700b04cf5d1c5f091fe63ca (diff)
downloadrails-f480cfabcd9000b5817b610e21466299025b12d2.tar.gz
rails-f480cfabcd9000b5817b610e21466299025b12d2.tar.bz2
rails-f480cfabcd9000b5817b610e21466299025b12d2.zip
Remove the Amazon SES ingress
It's unusable and not ready to ship in Rails 6.0. We'll rewrite it for 6.1.
Diffstat (limited to 'actionmailbox/test/dummy')
-rw-r--r--actionmailbox/test/dummy/config/environments/production.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/actionmailbox/test/dummy/config/environments/production.rb b/actionmailbox/test/dummy/config/environments/production.rb
index 1731582220..932858fdb6 100644
--- a/actionmailbox/test/dummy/config/environments/production.rb
+++ b/actionmailbox/test/dummy/config/environments/production.rb
@@ -1,9 +1,4 @@
Rails.application.configure do
- # Prepare the ingress controller used to receive mail
- # config.action_mailbox.ingress = :amazon
-
- # Verifies that versions and hashed value of the package contents in the project's package.json
- config.webpacker.check_yarn_integrity = false
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
@@ -96,4 +91,10 @@ Rails.application.configure do
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
+
+ # Prepare the ingress controller used to receive mail
+ # config.action_mailbox.ingress = :postfix
+
+ # Verifies that versions and hashed value of the package contents in the project's package.json
+ config.webpacker.check_yarn_integrity = false
end