aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Keesling <kyle.keesling@gmail.com>2018-12-14 09:21:59 -0500
committerKyle Keesling <kyle.keesling@gmail.com>2018-12-14 09:21:59 -0500
commitaf72d95883697fea79d5f1e76a90083a5f5a2b8a (patch)
treede27e856c0c5ee205ef3eef950a112bf8b5d0cad
parenta9653834aded0a31d82468e1e81d90c04b3500d4 (diff)
downloadrails-af72d95883697fea79d5f1e76a90083a5f5a2b8a.tar.gz
rails-af72d95883697fea79d5f1e76a90083a5f5a2b8a.tar.bz2
rails-af72d95883697fea79d5f1e76a90083a5f5a2b8a.zip
remove unimplemented arguement when adding mail message to ActiveStorage
The indentify parameter is not yet implemented in Rails 5.2.2
-rw-r--r--app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb b/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
index eb96d88691..059af0c302 100644
--- a/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
+++ b/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
@@ -24,6 +24,6 @@ class Rails::Conductor::ActionMailbox::InboundEmailsController < Rails::Conducto
def create_inbound_email(mail)
ActionMailbox::InboundEmail.create! raw_email: \
- { io: StringIO.new(mail.to_s), filename: 'inbound.eml', content_type: 'message/rfc822', identify: false }
+ { io: StringIO.new(mail.to_s), filename: 'inbound.eml', content_type: 'message/rfc822' }
end
end