-message = Message.new(:sender => from, :recipient => to,
- :sent_on => Time.now.getutc,
- :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
- :body => mail.body)
+mail = Mail.new(STDIN.readlines.join)
+
+if mail.multipart?
+ body = mail.html_part || mail.text_part
+else
+ body = mail
+end
+
+message = Message.new({
+ :sender => from,
+ :recipient => to,
+ :sent_on => mail.date.new_offset(0),
+ :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
+ :body => body.decoded
+}, :without_protection => true)