exit 0 unless recipient[3] == digest[0,6]
-mail = Mail.new(STDIN.readlines.join)
+message.update_attribute(:message_read, true) if message
-if mail.multipart?
- body = mail.html_part || mail.text_part
-else
- body = mail
-end
+mail = Mail.new(STDIN.readlines.join)
-message = Message.new(:sender => from, :recipient => to,
- :sent_on => mail.date.new_offset(0),
- :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
- :body => body.decoded)
+message = Message.from_mail(mail, from, to)
message.save!
Notifier.message_notification(message).deliver