This commit is contained in:
MrZYX 2011-05-25 22:50:13 +02:00
parent 52487e87de
commit cf1d83878c
3 changed files with 7 additions and 1 deletions

View file

@ -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'

View file

@ -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'

View file

@ -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