diff options
| author | Roman Chvanikov <chvanikoff@gmail.com> | 2019-04-14 14:05:21 +0700 | 
|---|---|---|
| committer | Roman Chvanikov <chvanikoff@gmail.com> | 2019-04-14 14:05:21 +0700 | 
| commit | 0cd4b6024d043efb096a353d6bd84ea0aeb74a6f (patch) | |
| tree | 359bbd63d213dbbf4c798a86e8804eaf6f047234 /docs | |
| parent | 371a4aed2ca9f6926e49f6791c8b4d14292d20e5 (diff) | |
| parent | 7304e0ce18776d4ace969a8a1b737a60635376d6 (diff) | |
| download | pleroma-0cd4b6024d043efb096a353d6bd84ea0aeb74a6f.tar.gz pleroma-0cd4b6024d043efb096a353d6bd84ea0aeb74a6f.zip | |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into feature/digest-email
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/config.md | 8 | ||||
| -rw-r--r-- | docs/installation/arch_linux_en.md | 3 | 
2 files changed, 5 insertions, 6 deletions
| diff --git a/docs/config.md b/docs/config.md index b5ea58746..e286104df 100644 --- a/docs/config.md +++ b/docs/config.md @@ -31,14 +31,14 @@ This filter replaces the filename (not the path) of an upload. For complete obfu  * `text`: Text to replace filenames in links. If empty, `{random}.extension` will be used. -## Pleroma.Mailer +## Pleroma.Emails.Mailer  * `adapter`: one of the mail adapters listed in [Swoosh readme](https://github.com/swoosh/swoosh#adapters), or `Swoosh.Adapters.Local` for in-memory mailbox.  * `api_key` / `password` and / or other adapter-specific settings, per the above documentation.  An example for Sendgrid adapter:  ```exs -config :pleroma, Pleroma.Mailer, +config :pleroma, Pleroma.Emails.Mailer,    adapter: Swoosh.Adapters.Sendgrid,    api_key: "YOUR_API_KEY"  ``` @@ -46,7 +46,7 @@ config :pleroma, Pleroma.Mailer,  An example for SMTP adapter:  ```exs -config :pleroma, Pleroma.Mailer, +config :pleroma, Pleroma.Emails.Mailer,    adapter: Swoosh.Adapters.SMTP,    relay: "smtp.gmail.com",    username: "YOUR_USERNAME@gmail.com", @@ -317,7 +317,7 @@ Pleroma has the following queues:  * `federator_outgoing` - Outgoing federation  * `federator_incoming` - Incoming federation -* `mailer` - Email sender, see [`Pleroma.Mailer`](#pleroma-mailer) +* `mailer` - Email sender, see [`Pleroma.Emails.Mailer`](#pleroma-emails-mailer)  * `transmogrifier` - Transmogrifier  * `web_push` - Web push notifications  * `scheduled_activities` - Scheduled activities, see [`Pleroma.ScheduledActivities`](#pleromascheduledactivity) diff --git a/docs/installation/arch_linux_en.md b/docs/installation/arch_linux_en.md index 4b3bbbbb0..2b040cfbc 100644 --- a/docs/installation/arch_linux_en.md +++ b/docs/installation/arch_linux_en.md @@ -7,7 +7,6 @@ This guide will assume that you have administrative rights, either as root or a  * `postgresql`  * `elixir` -* `erlang-unixodbc`  * `git`  * `base-devel` @@ -27,7 +26,7 @@ sudo pacman -Syu  * Install some of the above mentioned programs:  ```shell -sudo pacman -S git base-devel elixir erlang-unixodbc +sudo pacman -S git base-devel elixir  ```  ### Install PostgreSQL | 
