2018-10-19 16:31:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
namespace :action_mailbox do
|
|
|
|
namespace :ingress do
|
|
|
|
desc "Pipe an inbound email from STDIN to the Postfix ingress at the given URL"
|
|
|
|
task :postfix do
|
|
|
|
require "active_support"
|
|
|
|
require "active_support/core_ext/object/blank"
|
|
|
|
require "http"
|
|
|
|
|
2018-11-05 14:04:05 -05:00
|
|
|
unless url = ENV["URL"].presence
|
|
|
|
abort "URL is required"
|
|
|
|
end
|
2018-10-19 16:31:53 -04:00
|
|
|
|
2018-11-05 14:04:05 -05:00
|
|
|
unless password = ENV["INGRESS_PASSWORD"].presence
|
|
|
|
abort "INGRESS_PASSWORD is required"
|
2018-10-19 16:31:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
2018-11-05 14:04:05 -05:00
|
|
|
response = HTTP.basic_auth(user: "actionmailbox", pass: password)
|
2018-10-19 16:31:53 -04:00
|
|
|
.timeout(connect: 1, write: 10, read: 10)
|
|
|
|
.post(url, headers: { "Content-Type" => "message/rfc822", "User-Agent" => "Postfix" }, body: STDIN)
|
|
|
|
|
|
|
|
if response.status.success?
|
|
|
|
puts "2.0.0 HTTP #{response.status}"
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
puts "4.6.0 HTTP #{response.status}"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
rescue HTTP::ConnectionError => error
|
|
|
|
puts "4.4.2 Error connecting to the Postfix ingress: #{error.message}"
|
|
|
|
exit 1
|
|
|
|
rescue HTTP::TimeoutError
|
|
|
|
puts "4.4.7 Timed out piping to the Postfix ingress"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|