- Configuration: Add `:instance, autofollowing_nicknames` setting to provide a way to make accounts automatically follow new users that register on the local Pleroma instance.
- Ability to view remote timelines, with ex. `/api/v1/timelines/public?instance=lain.com` and streams `public:remote` and `public:remote:media`.
- The site title is now injected as a `title` tag like preloads or metadata.
+ - Password reset tokens now are not accepted after a certain age.
+- Added a configuration option to use the postgresql `websearch` function for more complicated search queries.
<details>
<summary>API Changes</summary>
]
],
show_reactions: true,
- password_reset_token_validity: 60 * 60 * 24
++ password_reset_token_validity: 60 * 60 * 24,
+ search_function: :websearch
config :pleroma, :welcome,
direct_message: [
* `external_user_synchronization`: Enabling following/followers counters synchronization for external users.
* `cleanup_attachments`: Remove attachments along with statuses. Does not affect duplicate files and attachments without status. Enabling this will increase load to database when deleting statuses on larger instances.
* `show_reactions`: Let favourites and emoji reactions be viewed through the API (default: `true`).
+ * `password_reset_token_validity`: The time after which reset tokens aren't accepted anymore, in seconds (default: one day).
+* `search_function`: What search function to use for fulltext search. Possible values are `:websearch` and `:plain`. `:websearch` enables more complex search queries, but requires at least PostgreSQL 11. (default: `websearch`)
## Welcome
* `direct_message`: - welcome message sent as a direct message.