aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/ingress.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/ingress.rake')
-rw-r--r--lib/tasks/ingress.rake11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/tasks/ingress.rake b/lib/tasks/ingress.rake
index 3f57b79caa..1253f94f71 100644
--- a/lib/tasks/ingress.rake
+++ b/lib/tasks/ingress.rake
@@ -8,18 +8,17 @@ namespace :action_mailbox do
require "active_support/core_ext/object/blank"
require "action_mailbox/postfix_relayer"
- url, password, user_agent = ENV.values_at("URL", "INGRESS_PASSWORD", "USER_AGENT")
+ 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::PostfixRelayer.new(url: url, password: password, user_agent: user_agent)
- .relay(STDIN.read).tap do |result|
- print result.output
- exit result.success? ? 0 : 1
- end
+ ActionMailbox::PostfixRelayer.new(url: url, password: password).relay(STDIN.read).tap do |result|
+ print result.output
+ exit result.success? ? 0 : 1
+ end
end
end
end