ask module: add global smtp setting
This commit is contained in:
parent
ccd760445d
commit
110eab0496
|
@ -64,9 +64,9 @@ Orbit::Application.configure do
|
||||||
config.action_mailer.delivery_method = :smtp
|
config.action_mailer.delivery_method = :smtp
|
||||||
config.action_mailer.smtp_settings = {
|
config.action_mailer.smtp_settings = {
|
||||||
:enable_starttls_auto => true,
|
:enable_starttls_auto => true,
|
||||||
:address => "smtp.gmail.com",
|
:address => "http://smtp.gmail.com",
|
||||||
:port => '587',
|
:port => '587',
|
||||||
:domain => "smtp.gmail.com",
|
:domain => "http://smtp.gmail.com",
|
||||||
:authentication => "plain",
|
:authentication => "plain",
|
||||||
:user_name => "redmine@rulingcom.com",
|
:user_name => "redmine@rulingcom.com",
|
||||||
:password => "rulingredmine"
|
:password => "rulingredmine"
|
||||||
|
|
Reference in New Issue