diff options
author | rinpatch <rinpatch@sdf.org> | 2020-01-07 11:43:22 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-01-07 11:43:22 +0000 |
commit | fcd5dd259a1700a045be902b43391b0d1bd58a5b (patch) | |
tree | 8ecc2c21d8da0f89e5b3d2b12c3d9fea62958fd9 /docs/configuration | |
parent | ee0c40831efde5054f587ae0e371fffcad1396b7 (diff) | |
parent | b55f2563d05f2d0ca5e1293391c67d73d60d501d (diff) | |
download | pleroma-fcd5dd259a1700a045be902b43391b0d1bd58a5b.tar.gz |
Merge branch 'bugfix/smtp-config-examples' into 'develop'
Fix SMTP mailer example
See merge request pleroma/pleroma!2091
Diffstat (limited to 'docs/configuration')
-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 a214b6e2f..cad3af68d 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 ``` |