]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Update for removal of netmask from ACLs
[rails.git] / script / deliver-message
index 7b5f60e01354756a6b4401dd4fb783fa1fd95824..9cce21f30700a881bae47f0b8b28e99cb58f4cf5 100755 (executable)
@@ -19,7 +19,12 @@ end
 exit 0 unless recipient[3] == digest[0,6]
 
 mail = Mail.new(STDIN.readlines.join)
-body = mail.html_part || mail.text_part
+
+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),