Class: Email::Mboxrd::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/email/mboxrd/message.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(supplied_body) ⇒ Message

Returns a new instance of Message.



26
27
28
# File 'lib/email/mboxrd/message.rb', line 26

def initialize(supplied_body)
  @supplied_body = supplied_body.clone
end

Instance Attribute Details

#supplied_bodyObject (readonly)

Returns the value of attribute supplied_body.



8
9
10
# File 'lib/email/mboxrd/message.rb', line 8

def supplied_body
  @supplied_body
end

Class Method Details

.clean_serialized(serialized) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/email/mboxrd/message.rb', line 10

def self.clean_serialized(serialized)
  cleaned = serialized.gsub(/^>(>*From)/, "\\1")
  # Serialized messages in this format *should* start with a line
  #   From xxx yy zz
  # rubocop:disable Style/IfUnlessModifier
  if cleaned.start_with?("From ")
    cleaned = cleaned.sub(/^From .*[\r\n]*/, "")
  end
  # rubocop:enable Style/IfUnlessModifier
  cleaned
end

.from_serialized(serialized) ⇒ Object



22
23
24
# File 'lib/email/mboxrd/message.rb', line 22

def self.from_serialized(serialized)
  new(clean_serialized(serialized))
end

Instance Method Details

#dateObject



34
35
36
37
38
# File 'lib/email/mboxrd/message.rb', line 34

def date
  parsed.date
rescue StandardError
  nil
end

#imap_bodyObject



44
45
46
# File 'lib/email/mboxrd/message.rb', line 44

def imap_body
  supplied_body.gsub(/(?<!\r)\n/, "\r\n")
end

#subjectObject



40
41
42
# File 'lib/email/mboxrd/message.rb', line 40

def subject
  parsed.subject
end

#to_serializedObject



30
31
32
# File 'lib/email/mboxrd/message.rb', line 30

def to_serialized
  "From #{from}\n" + mboxrd_body
end