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 /guides/source | |
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 'guides/source')
-rw-r--r-- | guides/source/action_mailbox_basics.md | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/guides/source/action_mailbox_basics.md b/guides/source/action_mailbox_basics.md index c90892d456..de92401226 100644 --- a/guides/source/action_mailbox_basics.md +++ b/guides/source/action_mailbox_basics.md @@ -19,9 +19,9 @@ Introduction ------------ Action Mailbox routes incoming emails to controller-like mailboxes for -processing in Rails. It ships with ingresses for Amazon SES, Mailgun, Mandrill, -Postmark, and SendGrid. You can also handle inbound mails directly via the -built-in Exim, Postfix, and Qmail ingresses. +processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark, +and SendGrid. You can also handle inbound mails directly via the built-in Exim, +Postfix, and Qmail ingresses. The inbound emails are turned into `InboundEmail` records using Active Record and feature lifecycle tracking, storage of the original email on cloud storage @@ -43,28 +43,6 @@ $ rails db:migrate ## Configuration -### Amazon SES - -Install the [`aws-sdk-sns`](https://rubygems.org/gems/aws-sdk-sns) gem: - -```ruby -# Gemfile -gem "aws-sdk-sns", ">= 1.9.0", require: false -``` - -Tell Action Mailbox to accept emails from SES: - -```ruby -# config/environments/production.rb -config.action_mailbox.ingress = :amazon -``` - -[Configure SES](https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-notifications.html) -to deliver emails to your application via POST requests to -`/rails/action_mailbox/amazon/inbound_emails`. If your application lived at -`https://example.com`, you would specify the fully-qualified URL -`https://example.com/rails/action_mailbox/amazon/inbound_emails`. - ### Exim Tell Action Mailbox to accept emails from an SMTP relay: |