diff options
| author | Alex S <alex.strizhakov@gmail.com> | 2019-04-10 17:57:41 +0700 |
|---|---|---|
| committer | Alex S <alex.strizhakov@gmail.com> | 2019-04-10 17:57:41 +0700 |
| commit | fe13a1d78c13fbe7b3027d442a6f6906440e5acc (patch) | |
| tree | 4fd819484da27d9c44f6a1df1597bf5133662864 /config | |
| parent | 144648de92abea7330cf264b7608634a27bb6bdf (diff) | |
| download | pleroma-fe13a1d78c13fbe7b3027d442a6f6906440e5acc.tar.gz pleroma-fe13a1d78c13fbe7b3027d442a6f6906440e5acc.zip | |
adding notify_email setting for trigger emails
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.exs | 1 | ||||
| -rw-r--r-- | config/test.exs | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 3462a37f7..9edec8dc3 100644 --- a/config/config.exs +++ b/config/config.exs @@ -160,6 +160,7 @@ config :pleroma, :http, config :pleroma, :instance, name: "Pleroma", email: "example@example.com", + notify_email: "noreply@example.com", description: "A Pleroma instance, an alternative fediverse server", limit: 5_000, remote_limit: 100_000, diff --git a/config/test.exs b/config/test.exs index 894fa8d3d..2c4beaade 100644 --- a/config/test.exs +++ b/config/test.exs @@ -23,6 +23,10 @@ config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads" config :pleroma, Pleroma.Mailer, adapter: Swoosh.Adapters.Test +config :pleroma, :instance, + email: "admin@example.com", + notify_email: "noreply@example.com" + # Configure your database config :pleroma, Pleroma.Repo, adapter: Ecto.Adapters.Postgres, |
