]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Only mark a message as read after we have validated the email reply
[rails.git] / script / deliver-message
index 7b5f60e01354756a6b4401dd4fb783fa1fd95824..6dffea96cbff9633dcc023f9f8a6cc7937c18c2a 100755 (executable)
@@ -18,13 +18,23 @@ end
 
 exit 0 unless recipient[3] == digest[0,6]
 
+message.update_attribute(:message_read, true) if message
+
 mail = Mail.new(STDIN.readlines.join)
-body = mail.html_part || mail.text_part
 
-message = Message.new(:sender => from, :recipient => to,
-                      :sent_on => mail.date.new_offset(0),
-                      :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
-                      :body => body.decoded)
+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)
 message.save!
 
 Notifier.message_notification(message).deliver