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
|
# frozen_string_literal: true
require "action_mailbox/version"
require "net/http"
require "uri"
module ActionMailbox
class PostfixRelayer
class Result < Struct.new(:output)
def success?
!failure?
end
def failure?
output.match?(/\A[45]\.\d{1,3}\.\d{1,3}(\s|\z)/)
end
end
CONTENT_TYPE = "message/rfc822"
USER_AGENT = "Action Mailbox Postfix relayer v#{ActionMailbox.version}"
attr_reader :uri, :username, :password
def initialize(url:, username: "actionmailbox", password:)
@uri, @username, @password = URI(url), username, password
end
def relay(source)
case response = post(source)
when Net::HTTPSuccess
Result.new "2.0.0 Successfully relayed message to Postfix ingress"
when Net::HTTPUnauthorized
Result.new "4.7.0 Invalid credentials for Postfix ingress"
else
Result.new "4.0.0 HTTP #{response.code}"
end
rescue IOError, SocketError, SystemCallError => error
Result.new "4.4.2 Network error relaying to Postfix ingress: #{error.message}"
rescue Timeout::Error
Result.new "4.4.2 Timed out relaying to Postfix ingress"
rescue => error
Result.new "4.0.0 Error relaying to Postfix ingress: #{error.message}"
end
private
def post(source)
client.post uri, source,
"Content-Type" => CONTENT_TYPE,
"User-Agent" => USER_AGENT,
"Authorization" => "Basic #{Base64.strict_encode64(username + ":" + password)}"
end
def client
@client ||= Net::HTTP.new(uri.host, uri.port).tap do |connection|
if uri.scheme == "https"
require "openssl"
connection.use_ssl = true
connection.verify_mode = OpenSSL::SSL::VERIFY_PEER
end
connection.open_timeout = 1
connection.read_timeout = 10
end
end
end
end
|