X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/938cdd8503f9e9257e9b023eb25ed32d6668bf74..79276fb43abc429cd5515f81005281e303a16dd8:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 80a8ae485..a1fde49b3 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -22,13 +22,7 @@ class Notifier < ActionMailer::Base subject I18n.t('notifier.lost_password.subject') body :url => url_for(:host => SERVER_URL, :controller => "user", :action => "reset_password", - :email => user.email, :token => token.token) - end - - def reset_password(user, pass) - common_headers user - subject I18n.t('notifier.reset_password.subject') - body :pass => pass + :token => token.token) end def gpx_success(trace, possible_points) @@ -53,7 +47,8 @@ class Notifier < ActionMailer::Base def message_notification(message) common_headers message.recipient - subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name) + from_header message.sender.display_name, "m", message.id, message.digest + subject I18n.t('notifier.message_notification.subject_header', :subject => message.title, :locale => locale) body :to_user => message.recipient.display_name, :from_user => message.sender.display_name, :body => message.body, @@ -68,7 +63,8 @@ class Notifier < ActionMailer::Base def diary_comment_notification(comment) common_headers comment.diary_entry.user - subject I18n.t('notifier.diary_comment_notification.subject', :user => comment.user.display_name) + from_header comment.user.display_name, "c", comment.id, comment.digest + subject I18n.t('notifier.diary_comment_notification.subject', :user => comment.user.display_name, :locale => locale) body :to_user => comment.diary_entry.user.display_name, :from_user => comment.user.display_name, :body => comment.body, @@ -88,20 +84,14 @@ class Notifier < ActionMailer::Base :replyurl => url_for(:host => SERVER_URL, :controller => "message", :action => "new", - :user_id => comment.user.id, + :display_name => comment.user.display_name, :title => "Re: #{comment.diary_entry.title}") end def friend_notification(friend) - befriender = User.find_by_id(friend.user_id) - befriendee = User.find_by_id(friend.friend_user_id) - - common_headers befriendee - subject I18n.t('notifier.friend_notification.subject', :user => befriender.display_name) - body :user => befriender.display_name, - :userurl => url_for(:host => SERVER_URL, - :controller => "user", :action => "view", - :display_name => befriender.display_name) + common_headers friend.befriendee + subject I18n.t('notifier.friend_notification.subject', :user => friend.befriender.display_name, :locale => locale) + body :friend => friend end private @@ -109,8 +99,14 @@ private def common_headers(recipient) recipients recipient.email locale recipient.preferred_language_from(I18n.available_locales) - from "webmaster@openstreetmap.org" - headers "return-path" => "bounces@openstreetmap.org", + from EMAIL_FROM + headers "return-path" => EMAIL_RETURN_PATH, "Auto-Submitted" => "auto-generated" end + + def from_header(name, type, id, digest) + if domain = MESSAGES_DOMAIN + from quote_address_if_necessary("#{name} <#{type}-#{id}-#{digest[0,6]}@#{domain}>", "utf-8") + end + end end