logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: fcd5dd259a1700a045be902b43391b0d1bd58a5b
parent: ee0c40831efde5054f587ae0e371fffcad1396b7
Author: rinpatch <rinpatch@sdf.org>
Date:   Tue,  7 Jan 2020 11:43:22 +0000

Merge branch 'bugfix/smtp-config-examples' into 'develop'

Fix SMTP mailer example

See merge request pleroma/pleroma!2091

Diffstat:

Mdocs/configuration/cheatsheet.md3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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 ```