diff options
author | George Claghorn <george@basecamp.com> | 2019-04-14 12:15:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-14 12:15:54 -0400 |
commit | f480cfabcd9000b5817b610e21466299025b12d2 (patch) | |
tree | 7ff1d11bae5f2b781cd48d0465dc87d3decbae52 /actionmailbox/config | |
parent | 00b0c84a9b78ce720700b04cf5d1c5f091fe63ca (diff) | |
download | rails-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/config')
-rw-r--r-- | actionmailbox/config/routes.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionmailbox/config/routes.rb b/actionmailbox/config/routes.rb index 517d2835af..1496d6f0b3 100644 --- a/actionmailbox/config/routes.rb +++ b/actionmailbox/config/routes.rb @@ -2,7 +2,6 @@ Rails.application.routes.draw do scope "/rails/action_mailbox", module: "action_mailbox/ingresses" do - post "/amazon/inbound_emails" => "amazon/inbound_emails#create", as: :rails_amazon_inbound_emails post "/mandrill/inbound_emails" => "mandrill/inbound_emails#create", as: :rails_mandrill_inbound_emails post "/postmark/inbound_emails" => "postmark/inbound_emails#create", as: :rails_postmark_inbound_emails post "/relay/inbound_emails" => "relay/inbound_emails#create", as: :rails_relay_inbound_emails |