diff options
author | Mint <mint@plagu.ee> | 2024-09-17 21:48:37 +0300 |
---|---|---|
committer | Mint <mint@plagu.ee> | 2024-09-17 22:03:43 +0300 |
commit | 1de5208a9e90485be38ac0d00088f18c5b36390a (patch) | |
tree | d49d3a36da2c102a039e5fd96d3f00e11463c404 | |
parent | e10db52e0a1c9cc24803a406998a9cfe75b7f9f2 (diff) | |
download | pleroma-1de5208a9e90485be38ac0d00088f18c5b36390a.tar.gz pleroma-1de5208a9e90485be38ac0d00088f18c5b36390a.zip |
Cheatsheet: add Mua mail adapter config
-rw-r--r-- | docs/configuration/cheatsheet.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 0b4e53b6f..ba41fe84d 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -742,6 +742,21 @@ config :pleroma, Pleroma.Emails.Mailer, auth: :always ``` +An example for Mua adapter: + +```elixir +config :pleroma, Pleroma.Emails.Mailer, + enabled: true, + adapter: Swoosh.Adapters.Mua, + relay: "mail.example.com", + port: 465, + auth: [ + username: "YOUR_USERNAME@domain.tld", + password: "YOUR_SMTP_PASSWORD" + ], + protocol: :ssl +``` + ### :email_notifications Email notifications settings. |