+ # Allow the user to reply to another message.
+ def reply
+ message = Message.find(params[:message_id])
+
+ if message.to_user_id == @user.id then
+ @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
+ @title = @subject = "Re: #{message.title.sub(/^Re:\s*/, '')}"
+ @this_user = User.find(message.from_user_id)
+
+ render :action => 'new'
+ else
+ flash[:notice] = t 'message.reply.wrong_user', :user => @user.display_name
+ redirect_to :controller => "user", :action => "login", :referer => request.fullpath
+ end
+ rescue ActiveRecord::RecordNotFound
+ @title = t'message.no_such_message.title'
+ render :action => 'no_such_message', :status => :not_found
+ end
+
+ # Show a message