diff options
| author | kaniini <nenolod@gmail.com> | 2019-07-09 17:36:35 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2019-07-09 17:36:35 +0000 |
| commit | e19e82975871388831fd23adc50fcaaea85ad5da (patch) | |
| tree | a5a7490e2fbe3fbe9874fbbed66f562ef76382de /config | |
| parent | 4948117fcf297efa735cdafb9cddf39946668266 (diff) | |
| parent | d6b0fce6e944e8a3dd05091ef2388c610362f824 (diff) | |
| download | pleroma-e19e82975871388831fd23adc50fcaaea85ad5da.tar.gz pleroma-e19e82975871388831fd23adc50fcaaea85ad5da.zip | |
Merge branch 'fix/1019-correct-count-remote-users' into 'develop'
Fix/1019 correct count remote users
Closes #1019
See merge request pleroma/pleroma!1376
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.exs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 675fbb551..09681f122 100644 --- a/config/config.exs +++ b/config/config.exs @@ -249,7 +249,14 @@ config :pleroma, :instance, remote_post_retention_days: 90, skip_thread_containment: true, limit_to_local_content: :unauthenticated, - dynamic_configuration: false + dynamic_configuration: false, + external_user_synchronization: [ + enabled: false, + # every 2 hours + interval: 60 * 60 * 2, + max_retries: 3, + limit: 500 + ] config :pleroma, :markup, # XXX - unfortunately, inline images must be enabled by default right now, because |
