diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-13 12:41:07 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-13 12:41:07 +0300 |
commit | b7908844f24f4ede4244261d43f30ed3724efbb7 (patch) | |
tree | 1b2f17fbba3cbd006573b8447117cc9e35c09d99 /docs/configuration/cheatsheet.md | |
parent | 54c9db38c8035ecc115e136a09a3d991e426959a (diff) | |
parent | a431e8c9f7033c739e10b0e8b34c75f2cc1d38d4 (diff) | |
download | pleroma-b7908844f24f4ede4244261d43f30ed3724efbb7.tar.gz |
Merge branch 'develop' into issue/1383
Diffstat (limited to 'docs/configuration/cheatsheet.md')
-rw-r--r-- | docs/configuration/cheatsheet.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 8f5d7f512..f690259bf 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -453,6 +453,7 @@ An example for Sendgrid adapter: ```elixir config :pleroma, Pleroma.Emails.Mailer, + enabled: true, adapter: Swoosh.Adapters.Sendgrid, api_key: "YOUR_API_KEY" ``` @@ -461,13 +462,13 @@ An example for SMTP adapter: ```elixir config :pleroma, Pleroma.Emails.Mailer, + enabled: true, adapter: Swoosh.Adapters.SMTP, relay: "smtp.gmail.com", username: "YOUR_USERNAME@gmail.com", password: "YOUR_SMTP_PASSWORD", port: 465, ssl: true, - tls: :always, auth: :always ``` |