fixed #747
This commit is contained in:
parent
52487e87de
commit
cf1d83878c
3 changed files with 7 additions and 1 deletions
|
|
@ -61,6 +61,9 @@ default:
|
||||||
# authentication
|
# authentication
|
||||||
smtp_authentication: 'plain'
|
smtp_authentication: 'plain'
|
||||||
|
|
||||||
|
# Automatically enable TLS? Ignored if smtp_authentication is set to none
|
||||||
|
smtp_starttls_auto: true
|
||||||
|
|
||||||
# Credentails possibly required to log in to SMTP server if
|
# Credentails possibly required to log in to SMTP server if
|
||||||
# smtp_authentication != 'none'
|
# smtp_authentication != 'none'
|
||||||
smtp_username: 'smtp_username'
|
smtp_username: 'smtp_username'
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,9 @@ default:
|
||||||
# authentication
|
# authentication
|
||||||
smtp_authentication: 'plain'
|
smtp_authentication: 'plain'
|
||||||
|
|
||||||
|
# Automatically enable TLS? Ignored if smtp_authentication is set to none
|
||||||
|
smtp_starttls_auto: true
|
||||||
|
|
||||||
# Credentails possibly required to log in to SMTP server if
|
# Credentails possibly required to log in to SMTP server if
|
||||||
# smtp_authentication != 'none'
|
# smtp_authentication != 'none'
|
||||||
smtp_username: 'smtp_username'
|
smtp_username: 'smtp_username'
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ Diaspora::Application.configure do
|
||||||
:authentication => AppConfig[:smtp_authentication],
|
:authentication => AppConfig[:smtp_authentication],
|
||||||
:user_name => AppConfig[:smtp_username],
|
:user_name => AppConfig[:smtp_username],
|
||||||
:password => AppConfig[:smtp_password],
|
:password => AppConfig[:smtp_password],
|
||||||
:enable_starttls_auto => true
|
:enable_starttls_auto => AppConfig[:smtp_starttls_auto]
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue