mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-04 15:24:23 +01:00
Merge branch 'dev' for release 2.6.7
This commit is contained in:
commit
815b57bbe8
@ -1 +1 @@
|
||||
2.6.6
|
||||
2.6.7
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog Fab Manager
|
||||
|
||||
## v2.6.7 2018 October 4
|
||||
|
||||
- Ability to configure SMTP more precisely
|
||||
- Typo correction in README (#121)
|
||||
- [TODO DEPLOY] add the following environment variables: `SMTP_AUTHENTICATION, SMTP_ENABLE_STARTTLS_AUTO, SMTP_OPENSSL_VERIFY_MODE`
|
||||
|
||||
## v2.6.6 2018 September 18
|
||||
|
||||
- Ability to parametrize machines order on the booking page
|
||||
|
@ -123,7 +123,7 @@ This procedure is not easy to follow so if you don't need to write some code for
|
||||
```
|
||||
|
||||
8. Build the database. You may have to follow the steps described in [the PostgreSQL configuration chapter](#setup-fabmanager-in-postgresql) before, if you don't already had done it.
|
||||
- **Warning**: **NO NOT** run `rake db:setup` instead of these commands, as this will not run some required raw SQL instructions.
|
||||
- **Warning**: **DO NOT** run `rake db:setup` instead of these commands, as this will not run some required raw SQL instructions.
|
||||
- **Please note**: Your password length must be between 8 and 128 characters, otherwise db:seed will be rejected. This is configured in [config/initializers/devise.rb](config/initializers/devise.rb)
|
||||
|
||||
```bash
|
||||
@ -220,10 +220,10 @@ When sending notification mails, the platform will use this address to identify
|
||||
Configure the Rails' Action Mailer delivery method.
|
||||
See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
|
||||
|
||||
DEFAULT_HOST, DEFAULT_PROTOCOL, SMTP_ADDRESS, SMTP_PORT, SMTP_USER_NAME & SMTP_PASSWORD
|
||||
DEFAULT_HOST, DEFAULT_PROTOCOL, SMTP_ADDRESS, SMTP_PORT, SMTP_USER_NAME, SMTP_PASSWORD, SMTP_AUTHENTICATION, SMTP_ENABLE_STARTTLS_AUTO & SMTP_OPENSSL_VERIFY_MODE
|
||||
|
||||
When DELIVERY_METHOD is set to **smtp**, configure the SMTP server parameters.
|
||||
See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
|
||||
See https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
|
||||
DEFAULT_HOST is also used to configure Google Analytics.
|
||||
|
||||
GA_ID
|
||||
|
@ -24,6 +24,9 @@ SMTP_ADDRESS:
|
||||
SMTP_PORT: '587'
|
||||
SMTP_USER_NAME:
|
||||
SMTP_PASSWORD:
|
||||
SMTP_AUTHENTICATION: 'plain'
|
||||
SMTP_ENABLE_STARTTLS_AUTO: 'true'
|
||||
SMTP_OPENSSL_VERIFY_MODE: ''
|
||||
GA_ID: ''
|
||||
##
|
||||
|
||||
|
@ -93,8 +93,9 @@ Rails.application.configure do
|
||||
:port => Rails.application.secrets.smtp_port,
|
||||
:user_name => Rails.application.secrets.smtp_user_name,
|
||||
:password => Rails.application.secrets.smtp_password,
|
||||
:authentication => 'plain',
|
||||
:enable_starttls_auto => true
|
||||
:authentication => Rails.application.secrets.smtp_authentication,
|
||||
:enable_starttls_auto => Rails.application.secrets.smtp_enable_starttls_auto,
|
||||
:openssl_verify_mode => Rails.application.secrets.smtp_openssl_verify_mode,
|
||||
}
|
||||
|
||||
# use :smtp for switch prod
|
||||
|
@ -92,7 +92,10 @@ Rails.application.configure do
|
||||
:address => Rails.application.secrets.smtp_address,
|
||||
:port => Rails.application.secrets.smtp_port,
|
||||
:user_name => Rails.application.secrets.smtp_user_name,
|
||||
:password => Rails.application.secrets.smtp_password
|
||||
:password => Rails.application.secrets.smtp_password,
|
||||
:authentication => Rails.application.secrets.smtp_authentication,
|
||||
:enable_starttls_auto => Rails.application.secrets.smtp_enable_starttls_auto,
|
||||
:openssl_verify_mode => Rails.application.secrets.smtp_openssl_verify_mode,
|
||||
}
|
||||
|
||||
# use :smtp for switch prod
|
||||
|
@ -91,6 +91,9 @@ staging:
|
||||
smtp_port: <%= ENV["SMTP_PORT"] %>
|
||||
smtp_user_name: <%= ENV["SMTP_USER_NAME"] %>
|
||||
smtp_password: <%= ENV["SMTP_PASSWORD"] %>
|
||||
smtp_authentication: <%= ENV["SMTP_AUTHENTICATION"] %>
|
||||
smtp_enable_starttls_auto: <%= ENV["SMTP_ENABLE_STARTTLS_AUTO"] %>
|
||||
smtp_openssl_verify_mode: <%= ENV["SMTP_OPENSSL_VERIFY_MODE"] %>
|
||||
time_zone: <%= ENV["TIME_ZONE"] %>
|
||||
week_starting_day: <%= ENV["WEEK_STARTING_DAY"] %>
|
||||
d3_date_format: <%= ENV["D3_DATE_FORMAT"].dump %>
|
||||
@ -132,6 +135,9 @@ production:
|
||||
smtp_user_name: <%= ENV["SMTP_USER_NAME"] %>
|
||||
smtp_password: <%= ENV["SMTP_PASSWORD"] %>
|
||||
time_zone: <%= ENV["TIME_ZONE"] %>
|
||||
smtp_authentication: <%= ENV["SMTP_AUTHENTICATION"] %>
|
||||
smtp_enable_starttls_auto: <%= ENV["SMTP_ENABLE_STARTTLS_AUTO"] %>
|
||||
smtp_openssl_verify_mode: <%= ENV["SMTP_OPENSSL_VERIFY_MODE"] %>
|
||||
week_starting_day: <%= ENV["WEEK_STARTING_DAY"] %>
|
||||
d3_date_format: <%= ENV["D3_DATE_FORMAT"].dump %>
|
||||
uib_date_format: <%= ENV["UIB_DATE_FORMAT"] %>
|
||||
|
@ -21,6 +21,9 @@ SMTP_ADDRESS=smtp.sendgrid.net
|
||||
SMTP_PORT=587
|
||||
SMTP_USER_NAME=
|
||||
SMTP_PASSWORD=
|
||||
SMTP_AUTHENTICATION=plain
|
||||
SMTP_ENABLE_STARTTLS_AUTO=true
|
||||
SMTP_OPENSSL_VERIFY_MODE=
|
||||
|
||||
GA_ID=
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user