Fix SMTP mailer example
authorRX14 <steph@rx14.co.uk>
Sun, 5 Jan 2020 19:00:48 +0000 (19:00 +0000)
committerRX14 <steph@rx14.co.uk>
Sun, 5 Jan 2020 19:00:48 +0000 (19:00 +0000)
`ssl: true` and `tls: :always` tries to use both TLS and STARTTLS on the
same SMTP connection, causing it to fail.

docs/configuration/cheatsheet.md

index a214b6e2fef85e90991e59ed0b19bedd266d14f4..cad3af68d4cbf7e5e22fd5cf5dc180461d70feda 100644 (file)
@@ -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
 ```