Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ if config_env() == :prod do
username: System.get_env("SMTP_USERNAME"),
# mailuser password
password: System.get_env("SMTP_PASSWORD"),
ssl: true,
# Used for STARTTLS config. We use SSL/TLS, so we don't need this.
tls: :never,
# assume STARTTLS
ssl: false,
tls: :always,
auth: :always,
retries: 2,
# don't look up mx entries. We already specify everything correctly.
Expand Down
2 changes: 1 addition & 1 deletion lib/cklist/accounts/user_notifier.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Cklist.Accounts.UserNotifier do
email =
new()
|> to(recipient)
|> from({"Cklist", "no-reply@mail.cklist.org"})
|> from({"Cklist", "no-reply@cklist.org"})
|> subject(subject)
|> text_body(body)

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Cklist.MixProject do
def project do
[
app: :cklist,
version: "0.1.0",
version: "0.1.1",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down