deduce (owner)

Revisions

gist: 194722 Download_button fork
public
Public Clone URL: git://gist.github.com/194722.git
Embed All Files: show embed
environment.rb #
1
2
3
4
5
6
7
8
9
10
11
require 'smtp_tls'
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :domain => 'gmail.com',
  :user_name => "redmine@YOUR_DOMAIN_NAME",
  :password => "YOUR_PASSWORD",
  :authentication => :plain
}