Hi, I use the God gem to monitor my delayed_job processes, so far the gem is doing its job as it should but from some reason I can't get him to send email notifications (i use google apps). Here are my god file configuration:
God::Contacts::Email.defaults do |d| d.from_email = '[email protected]' d.from_name = 'Process monitoring' d.delivery_method = :smtp d.server_host = 'smtp.gmail.com' d.server_port = 587 d.server_auth = true d.server_domain = 'example.com' d.server_user = '[email protected]' d.server_password = 'myPassword' end God.contact(:email) do |c| c.name = 'me' c.group = 'developers' c.to_email = '[email protected]' end w.start_if do |start| start.condition(:process_running) do |c| c.interval = 20.seconds c.running = false c.notify = {:contacts => ['me'], :priority => 1, :category => 'staging'} end Any thoughts? -- You received this message because you are subscribed to the Google Groups "god.rb" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/god-rb?hl=en.
