1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# frozen_string_literal: true
namespace :action_mailbox do
namespace :ingress do
task :environment do
require "active_support"
require "active_support/core_ext/object/blank"
require "action_mailbox/relayer"
end
desc "Relay an inbound email from Exim to Action Mailbox (URL and INGRESS_PASSWORD required)"
task exim: "action_mailbox:ingress:environment" do
url, password = ENV.values_at("URL", "INGRESS_PASSWORD")
if url.blank? || password.blank?
print "URL and INGRESS_PASSWORD are required"
exit 64 # EX_USAGE
end
ActionMailbox::Relayer.new(url: url, password: password).relay(STDIN.read).tap do |result|
print result.message
case
when result.success?
exit 0
when result.transient_failure?
exit 75 # EX_TEMPFAIL
else
exit 69 # EX_UNAVAILABLE
end
end
end
desc "Relay an inbound email from Postfix to Action Mailbox (URL and INGRESS_PASSWORD required)"
task postfix: "action_mailbox:ingress:environment" do
url, password = ENV.values_at("URL", "INGRESS_PASSWORD")
if url.blank? || password.blank?
print "4.3.5 URL and INGRESS_PASSWORD are required"
exit 1
end
ActionMailbox::Relayer.new(url: url, password: password).relay(STDIN.read).tap do |result|
print "#{result.status_code} #{result.message}"
exit result.success?
end
end
desc "Relay an inbound email from Qmail to Action Mailbox (URL and INGRESS_PASSWORD required)"
task qmail: "action_mailbox:ingress:environment" do
url, password = ENV.values_at("URL", "INGRESS_PASSWORD")
if url.blank? || password.blank?
print "URL and INGRESS_PASSWORD are required"
exit 111
end
ActionMailbox::Relayer.new(url: url, password: password).relay(STDIN.read).tap do |result|
print result.message
case
when result.success?
exit 0
when result.transient_failure?
exit 111
else
exit 100
end
end
end
end
end
|