]> git.openstreetmap.org Git - rails.git/commitdiff
Use either the HTML or the text part of an email, not both
authorTom Hughes <tom@compton.nu>
Thu, 1 Dec 2011 19:54:02 +0000 (19:54 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 1 Dec 2011 19:54:02 +0000 (19:54 +0000)
script/deliver-message

index f28a9d9f3b82e0a58e97cfc3f1bcc32da563ff88..7b5f60e01354756a6b4401dd4fb783fa1fd95824 100755 (executable)
@@ -19,11 +19,12 @@ end
 exit 0 unless recipient[3] == digest[0,6]
 
 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 => mail.body.decoded)
+                      :body => body.decoded)
 message.save!
 
 Notifier.message_notification(message).deliver