]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Postgres is no longer starting
[rails.git] / script / deliver-message
index ffb23ef116937b33b983198138a736e3c02f4625..71fa4f2f15b1e500d5ca55ca2be19f5db0658987 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env ruby
 
-require File.dirname(__FILE__) + "/../config/environment"
+require File.join(File.dirname(__FILE__), "..", "config", "environment")
 
 if recipient = ARGV[0].match(/^c-(\d+)-(\d+)-(.*)$/)
   comment = DiaryComment.find(recipient[1])
@@ -20,6 +20,7 @@ else
   exit 0
 end
 
+exit 0 unless from.active?
 exit 0 unless token == digest[0, 6]
 exit 0 if date < 1.month.ago
 
@@ -32,6 +33,6 @@ mail = Mail.new($stdin.read
 message = Message.from_mail(mail, from, to)
 message.save!
 
-Notifier.message_notification(message).deliver
+UserMailer.message_notification(message).deliver
 
 exit 0