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
|
||||
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
|
||||
# smtp_authentication != 'none'
|
||||
smtp_username: 'smtp_username'
|
||||
|
|
|
|||
|
|
@ -61,6 +61,9 @@ default:
|
|||
# authentication
|
||||
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
|
||||
# smtp_authentication != 'none'
|
||||
smtp_username: 'smtp_username'
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ Diaspora::Application.configure do
|
|||
:authentication => AppConfig[:smtp_authentication],
|
||||
:user_name => AppConfig[:smtp_username],
|
||||
:password => AppConfig[:smtp_password],
|
||||
:enable_starttls_auto => true
|
||||
:enable_starttls_auto => AppConfig[:smtp_starttls_auto]
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue