Advertisement
Guest User

Untitled

a guest
Feb 18th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. config.action_mailer.delivery_method = :smtp
  2. config.action_mailer.smtp_settings = {
  3. address: 'smtp.gmail.com',
  4. port: 465,
  5. user_name: ENV["GMAIL_USERNAME"],
  6. password: ENV["GMAIL_PASSWORD"],
  7. authentication: :login,
  8. enable_starttls_auto: true
  9. }
  10.  
  11. [#15945] INFO -- : [ActiveJob] [ActionMailer::DeliveryJob] [ae94a390-be07-4bdf-9fc5-dc7a58dd36ef] Performing ActionMailer::DeliveryJob from Inline(mailers) with arguments: "IndexMailer", "send_reset_password_email", "deliver_now!", gid://api/User::Student/4, "uaymjejb"
  12. [#15945] DEBUG -- : [ActiveJob] [ActionMailer::DeliveryJob] [ae94a390-be07-4bdf-9fc5-dc7a58dd36ef]
  13. IndexMailer#send_reset_password_email: processed outbound mail in 153.7ms
  14. [#15945] INFO -- : [ActiveJob] [ActionMailer::DeliveryJob] [ae94a390-be07-4bdf-9fc5-dc7a58dd36ef] Performed ActionMailer::DeliveryJob from Inline(mailers) in 10221.58ms
  15. [#15945] DEBUG -- : (1.1ms) ROLLBACK
  16. [#15945] INFO -- : Completed 500 Internal Server Error in 10368ms (ActiveRecord: 7.6ms)
  17. [#15945] FATAL -- :
  18. EOFError (end of file reached):
  19. app/controllers/application_controller.rb:87:in `block in reset_password_transaction'
  20. app/controllers/application_controller.rb:85:in `reset_password_transaction'
  21. app/controllers/application_controller.rb:49:in `reset_password'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement