Fix SMTP relay host for dokku deployment

This commit is contained in:
Christoph Haas 2021-02-25 02:54:45 +01:00
parent 1f9187e35c
commit b2ed771663

View file

@ -71,7 +71,8 @@ Rails.application.configure do
config.action_mailer.perform_caching = false
config.action_mailer.smtp_settings = {
address: 'localhost',
# TODO: make configurable through ENV variables
address: 'dokku1.workaround.org',
port: 25,
enable_starttls_auto: false
}