Pronoun question and a few fixes
This commit is contained in:
@@ -33,17 +33,19 @@ BikeBike::Application.configure do
|
||||
config.assets.digest = true
|
||||
config.assets.compile = true
|
||||
|
||||
config.action_mailer.delivery_method = :smtp
|
||||
config.action_mailer.smtp_settings = {
|
||||
:address => 'mail.bikebike.org',
|
||||
:domain => 'preview.bikebike.org',
|
||||
:port => 587,
|
||||
:authentication => :plain,
|
||||
:enable_starttls_auto => true,
|
||||
:openssl_verify_mode => 'none',
|
||||
:user_name => 'info@preview.bikebike.org',
|
||||
:password => 'test'
|
||||
}
|
||||
# to deliver to the browser instead of email
|
||||
config.action_mailer.delivery_method = :letter_opener
|
||||
# config.action_mailer.delivery_method = :smtp
|
||||
# config.action_mailer.smtp_settings = {
|
||||
# address: 'smtp.gmail.com',
|
||||
# domain: 'bikebike.org',
|
||||
# port: 587,
|
||||
# authentication: :plain,
|
||||
# enable_starttls_auto: true,
|
||||
# openssl_verify_mode: 'none',
|
||||
# user_name: 'info@bikebike.org',
|
||||
# password: config.app_config['email_password']
|
||||
# }
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
config.action_mailer.perform_deliveries = true
|
||||
|
||||
@@ -52,11 +54,6 @@ BikeBike::Application.configure do
|
||||
|
||||
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_URL_PARAM
|
||||
|
||||
# to be appraised of mailing errors
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
# to deliver to the browser instead of email
|
||||
config.action_mailer.delivery_method = :letter_opener
|
||||
|
||||
Paypal.sandbox!
|
||||
config.action_controller.default_url_options = { trailing_slash: true }
|
||||
end
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
BikeBike::Application.configure do
|
||||
config.app_config = config_for(:app_config)
|
||||
# Settings specified here will take precedence over those in config/application.rb.
|
||||
|
||||
# Code is not reloaded between requests.
|
||||
@@ -87,14 +88,14 @@ BikeBike::Application.configure do
|
||||
|
||||
config.action_mailer.delivery_method = :smtp
|
||||
config.action_mailer.smtp_settings = {
|
||||
:address => 'smtp.gmail.com',
|
||||
:domain => 'bikebike.org',
|
||||
:port => 587,
|
||||
:authentication => :plain,
|
||||
:enable_starttls_auto => true,
|
||||
:openssl_verify_mode => 'none',
|
||||
:user_name => '',
|
||||
:password => ''
|
||||
address: 'smtp.gmail.com',
|
||||
domain: 'bikebike.org',
|
||||
port: 587,
|
||||
authentication: :plain,
|
||||
enable_starttls_auto: true,
|
||||
openssl_verify_mode: 'none',
|
||||
user_name: 'info@bikebike.org',
|
||||
password: config.app_config['email_password']
|
||||
}
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
config.action_mailer.perform_deliveries = true
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
BikeBike::Application.configure do
|
||||
config.app_config = config_for(:app_config)
|
||||
# Settings specified here will take precedence over those in config/application.rb.
|
||||
|
||||
# Code is not reloaded between requests.
|
||||
@@ -88,14 +89,14 @@ BikeBike::Application.configure do
|
||||
|
||||
config.action_mailer.delivery_method = :smtp
|
||||
config.action_mailer.smtp_settings = {
|
||||
:address => 'smtp.gmail.com',
|
||||
:domain => 'bikebike.org',
|
||||
:port => 587,
|
||||
:authentication => :plain,
|
||||
:enable_starttls_auto => true,
|
||||
:openssl_verify_mode => 'none',
|
||||
:user_name => '',
|
||||
:password => ''
|
||||
address: 'smtp.gmail.com',
|
||||
domain: 'bikebike.org',
|
||||
port: 587,
|
||||
authentication: :plain,
|
||||
enable_starttls_auto: true,
|
||||
openssl_verify_mode: 'none',
|
||||
user_name: 'info@bikebike.org',
|
||||
password: config.app_config['email_password']
|
||||
}
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
config.action_mailer.perform_deliveries = true
|
||||
|
||||
Reference in New Issue
Block a user