3 require File.dirname(__FILE__) + '/../config/environment'
5 exit 0 unless recipient = ARGV[0].match(/^([cm])-(\d+)-(.*)$/)
8 comment = DiaryComment.find(recipient[2])
9 digest = comment.digest
10 from = comment.diary_entry.user
13 message = Message.find(recipient[2])
14 digest = message.digest
15 from = message.recipient
18 message.update_attribute(:message_read, true)
21 exit 0 unless recipient[3] == digest[0,6]
23 mail = Mail.new(STDIN.readlines.join)
26 body = mail.html_part || mail.text_part
31 message = Message.new({
34 :sent_on => mail.date.new_offset(0),
35 :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
37 }, :without_protection => true)
40 Notifier.message_notification(message).deliver