diff options
author | feld <feld@feld.me> | 2024-09-17 19:45:29 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2024-09-17 19:45:29 +0000 |
commit | 8776d31794b2a6523dd07a950f355920d2ec1192 (patch) | |
tree | b8ac06262bff5fa23136603474ba0f8e7a352c3e /docs/configuration/cheatsheet.md | |
parent | f423534ef0689dd3537a8e98161167089bafbad9 (diff) | |
parent | 1de5208a9e90485be38ac0d00088f18c5b36390a (diff) | |
download | pleroma-8776d31794b2a6523dd07a950f355920d2ec1192.tar.gz pleroma-8776d31794b2a6523dd07a950f355920d2ec1192.zip |
Merge branch 'swoosh-mua' into 'develop'
Add dependencies for Swoosh's Mua mail adapter
See merge request pleroma/pleroma!4263
Diffstat (limited to 'docs/configuration/cheatsheet.md')
-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 6a535e054..36e9cbba2 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. |