Merge branch 'swoosh-mua' into 'develop'

Add dependencies for Swoosh's Mua mail adapter

See merge request pleroma/pleroma!4263
This commit is contained in:
feld 2024-09-17 19:45:29 +00:00
commit 8776d31794
4 changed files with 22 additions and 2 deletions

View file

@ -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.