1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00

10 lines
311 B
Ruby
Raw Normal View History

2012-12-04 00:46:15 -05:00
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "gmail.com",
:user_name => "velocipede",
:password => "password",
:authentication => "plain",
:enable_starttls_auto => true
}