aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/action_mailroom/inbound_emails_controller.rb
blob: 2aa2a8932316eefa889108a921b6d810e90a2957 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# TODO: Add access protection using basic auth with verified tokens. Maybe coming from credentials by default?
class ActionMailroom::InboundEmailsController < ActionController::Base
  skip_forgery_protection
  before_action :require_rfc822_message

  def create
    ActionMailroom::InboundEmail.create_from_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