mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-17 06:52:27 +01:00
Ability to configure SMTP connection to use SMTP/TLS
This commit is contained in:
parent
e8930924e4
commit
90b2e7e575
@ -11,6 +11,7 @@
|
||||
- Ability to disable invoices generation and interfaces
|
||||
- Added a known issue to the README (#152)
|
||||
- Ability to fully rebuild the projets index in ElasticSearch with rake fablab:es:build_projects_index
|
||||
- Ability to configure SMTP connection to use SMTP/TLS
|
||||
- Fix a bug: invoices with total = 0, are marked as paid on site even if paid by card
|
||||
- Fix a bug: after disabling a group, its associated plans are hidden from the interface
|
||||
- Fix a bug: in case of unexpected server error during stripe payment process, the confirm button is not unlocked
|
||||
@ -33,6 +34,7 @@
|
||||
- [TODO DEPLOY] add the `MAX_IMPORT_SIZE` environment variable (see [doc/environment.md](doc/environment.md) for configuration details)
|
||||
- [TODO DEPLOY] add `- ${PWD}/imports:/usr/src/app/imports` in the volumes list of your fabmanager service in [docker-compose.yml](docker/docker-compose.yml)
|
||||
- [TODO DEPLOY] add the `FABLAB_WITHOUT_INVOICES` environment variable (see [doc/environment.md](doc/environment.md) for configuration details)
|
||||
- [TODO DEPLOY] add the following environment variables: `SMTP_TLS`
|
||||
|
||||
## v4.1.1 2019 september 20
|
||||
|
||||
|
@ -36,6 +36,7 @@ SMTP_PASSWORD:
|
||||
SMTP_AUTHENTICATION: 'plain'
|
||||
SMTP_ENABLE_STARTTLS_AUTO: 'true'
|
||||
SMTP_OPENSSL_VERIFY_MODE: ''
|
||||
SMTP_TLS: 'false'
|
||||
|
||||
# Google analytics
|
||||
GA_ID: ''
|
||||
|
@ -104,6 +104,7 @@ Rails.application.configure do
|
||||
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,
|
||||
tls: Rails.application.secrets.smtp_tls
|
||||
}
|
||||
|
||||
# use :smtp for switch prod
|
||||
|
@ -106,6 +106,7 @@ Rails.application.configure do
|
||||
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,
|
||||
tls: Rails.application.secrets.smtp_tls
|
||||
}
|
||||
|
||||
# use :smtp for switch prod
|
||||
|
@ -101,7 +101,7 @@ 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, SMTP_AUTHENTICATION, SMTP_ENABLE_STARTTLS_AUTO & SMTP_OPENSSL_VERIFY_MODE
|
||||
DEFAULT_HOST, DEFAULT_PROTOCOL, SMTP_ADDRESS, SMTP_PORT, SMTP_USER_NAME, SMTP_PASSWORD, SMTP_AUTHENTICATION, SMTP_ENABLE_STARTTLS_AUTO, SMTP_OPENSSL_VERIFY_MODE & SMTP_TLS
|
||||
|
||||
When DELIVERY_METHOD is set to **smtp**, configure the SMTP server parameters.
|
||||
See https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
|
||||
|
@ -26,6 +26,7 @@ SMTP_PASSWORD=
|
||||
SMTP_AUTHENTICATION=plain
|
||||
SMTP_ENABLE_STARTTLS_AUTO=true
|
||||
SMTP_OPENSSL_VERIFY_MODE=
|
||||
SMTP_TLS=false
|
||||
|
||||
GA_ID=
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user