Exception Notifier Plugin for Rails

learn more… | top users | synonyms

0
votes
1answer
25 views

Exception Notification

I am trying to make an exception notifier. I installed the gem and put this code in production.rb: config.action_mailer.delivery_method = :sendmail # Defaults to: ...
2
votes
0answers
48 views

ExceptionNotifier constant uninitialized Rails 3

I've read over many questions on this site as well as the GitHub documentation for ExceptionNotifier and its implementation in Rails 3, and I can't figure out why it won't work for me on my production ...
1
vote
1answer
100 views

Rails Mailer “Net::OpenTimeout: execution expired” Exception on production server only

I am using Ruby MRI 2.0.0 and Rails 3.2.12 on a Ubuntu 12.04 TLS VPS and attempting to setup email notifications in my app. It was working fine a few days ago, but not anymore. My web host is OVH. My ...
2
votes
1answer
56 views

ExceptionNotifier.notify_exception not working

We are using this gem(https://github.com/smartinez87/exception_notification) with rails 3.2.11. We want to use following method "ExceptionNotifier.notify_exception(e)" from action of controller and ...
0
votes
0answers
30 views

How to configure Exception_Notifier for delayed_jobs exception in Rails 3.2.11 on development enviornment

I want to setup exception_notifier for exceptions on delayed_jobs worker on my local development enviornment. Apparently, I keep missing the exceptions while eyeballing on the tail -f development.log. ...
0
votes
1answer
98 views

ActionMailer::Base::NullMail when trying exception_notification in development

I'd like to add the exception_notification gem to our app, however, this happens when I try to manually trigger a mail: exception # => #<ZeroDivisionError: divided by 0> ...
0
votes
1answer
95 views

Missing template error with Exception Notification gem and Rails 3.2

We use exception_notification gem in our project and we're seeing missing template errors now. Here's what our setup looks like: # Gemfile gem 'exception_notification' # ...
0
votes
1answer
355 views

Ruby on Rails exception handling basics

I have a Rails 3 app that is using the exception_notification gem to send emails about exceptions. I would also like to show users specific error messages when exceptions occur, but by catching a ...
0
votes
1answer
58 views

How do i send an email using exception_notifier gem manually?

I am trying the following code: ExceptionNotifier::Notifier.exception_notification(env, exception).deliver But this message keep on appearing: A sender (Return-Path, Sender or From) required to ...
1
vote
2answers
142 views

exception_notification: smtp not working

I am using Rails 3.2.5 and exception_notification gem. In production mode, I am generally sending emails using PostMarkApp's postmark-rails gem. Initially, I got a View error from ...
0
votes
1answer
32 views

Mailers sends empty content

Using Rails 3.1.1 and Heroku + exception_notification gem 3.0.0 Starting yesterday I started receiving my notification_notifier emails with an empty content. The subject and all is just as it used to ...
0
votes
1answer
161 views

Rails exception notifier — add to database

We have exception notifier set up on our server, though would like a back-up solution, if the email server is down, that would let us log exceptions in the database. How is exception notifier ...
18
votes
2answers
2k views

exception_notification gem raises ActionView::Template::Error (code converter not found (UTF-8 to UTF-16)) only on Heroku production mode

I create rails app deployed on Heroku. also, exception_notification gem enabled. when it is on development setup ActionMailer to Gmail, everything is fine and sends a notification from Gmail address. ...
0
votes
1answer
268 views

ActionMailer not using correct smtp_settings with ExceptionNotification

For some reason it seems like my smtp settings are not being applied. I have them set up in application.rb, # application.rb config.action_mailer.delivery_method = :smtp ...
10
votes
4answers
2k views

Rails exception notifier in rake tasks

I have a simple rails application with a few controller and some rake tasks. A couple of tasks are executed by cron configured with whenever gem. One of my task is executed daily and sometime it ...
15
votes
2answers
2k views

How to make ExceptionNotifier work with delayed_job in Rails 3?

I'd like ExceptionNotifier to send out an email when an exception happens in a delayed job, just like for other exceptions. How can I achieve that?
0
votes
1answer
281 views

Missing template exception_notifier/exception_notification.erb

The following error occurs when an exception is generated. I am using vendor/rails-2.3.10 and ruby 1.8.7 Missing template exception_notifier/exception_notification.erb in view path app/views ...
4
votes
2answers
846 views

exception_notification for delayed_job

Is there a exception_notification-like gem for delayed_job? Preferably that works with REE-1.8.7 and Rails 2.3.10.