aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/action_mailroom/inbound_emails_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/action_mailroom/inbound_emails_controller.rb')
-rw-r--r--app/controllers/action_mailroom/inbound_emails_controller.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/controllers/action_mailroom/inbound_emails_controller.rb b/app/controllers/action_mailroom/inbound_emails_controller.rb
new file mode 100644
index 0000000000..0c74d4b29a
--- /dev/null
+++ b/app/controllers/action_mailroom/inbound_emails_controller.rb
@@ -0,0 +1,14 @@
+class ActionMailroom::InboundEmailsController < ActionController::Base
+ skip_forgery_protection
+ before_action :require_rfc822_message
+
+ def create
+ ActionMailroom::InboundEmail.create!(raw_email: params[:message])
+ head :created
+ end
+
+ private
+ def require_rfc822_message
+ head :unsupported_media_type unless params.require(:message).content_type == 'message/rfc822'
+ end
+end