]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Don't check the ACL unless we're creating a new user
[rails.git] / script / deliver-message
index f28a9d9f3b82e0a58e97cfc3f1bcc32da563ff88..9cce21f30700a881bae47f0b8b28e99cb58f4cf5 100755 (executable)
@@ -20,10 +20,16 @@ exit 0 unless recipient[3] == digest[0,6]
 
 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 => mail.body.decoded)
+                      :body => body.decoded)
 message.save!
 
 Notifier.message_notification(message).deliver