diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-01-12 12:12:15 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-01-12 12:12:15 -0600 |
commit | 2f5b8fbeb3830759c00675f99d893a92b1d3edb2 (patch) | |
tree | ee7ba90fa0b52e31cc7beeb9335deefbadd94e15 /docs/configuration/cheatsheet.md | |
parent | 933dc120438d14502e4bc4c29db904114fb6e438 (diff) | |
parent | ecb8fe183c5a007e80d7b2b1bfc9ead89dc27cc2 (diff) | |
download | pleroma-2f5b8fbeb3830759c00675f99d893a92b1d3edb2.tar.gz |
Merge branch 'develop' into issue/1354
Diffstat (limited to 'docs/configuration/cheatsheet.md')
-rw-r--r-- | docs/configuration/cheatsheet.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index ce2a14210..cad3af68d 100644 --- 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 ``` @@ -836,3 +837,7 @@ config :auto_linker, rel: "ugc" ] ``` + +## Custom Runtime Modules (`:modules`) + +* `runtime_dir`: A path to custom Elixir modules (such as MRF policies). |