aboutsummaryrefslogtreecommitdiff
path: root/config/description.exs
AgeCommit message (Collapse)Author
2021-01-06Optionally store user IP addresses, #1708Alex Gleason
2020-12-23FormattingMark Felder
2020-12-23Update descriptions for MediaProxy, remove settings that should not be ↵Mark Felder
exposed in AdminFE
2020-12-19config/description.exs: Remove outdated information about Obanrinpatch
The version of Oban we depend on no longer uses ShareLocks, so this note no longer applies.
2020-12-14Fix for dropping posts/notifs in WS when mix task is executedAlexander Strizhakov
- start oban in mix tasks with empty queues, plugins and crontab - fix for update_users_following_followers_counts - fix for removed logo.png - typo in resend confirmation emails mix task docs - fix for uploads mix task (start Majic.Pool) - fix for creating user mix task (start :fast_html app)
2020-12-09Tweaks to OAuth entities expiration: changed default to 30 days, removed ↵Ivan Tashkinov
hardcoded values usage, fixed OAuthView (expires_in).
2020-11-17Remove FedSocketsrinpatch
Current FedSocket implementation has a bunch of problems. It doesn't have proper error handling (in case of an error the server just doesn't respond until the connection is closed, while the client doesn't match any error messages and just assumes there has been an error after 15s) and the code is full of bad descisions (see: fetch registry which uses uuids for no reason and waits for a response by recursively querying a ets table until the value changes, or double JSON encoding). Sometime ago I almost completed rewriting fedsockets from scrach to adress these issues. However, while doing so, I realized that fedsockets are just too overkill for what they were trying to accomplish, which is reduce the overhead of federation by not signing every message. This could be done without reimplementing failure states and endpoint logic we already have with HTTP by, for example, using TLS cert auth, or switching to a more performant signature algorithm. I opened https://git.pleroma.social/pleroma/pleroma/-/issues/2262 for further discussion on alternatives to fedsockets. From discussions I had with other Pleroma developers it seems like they would approve the descision to remove them as well, therefore I am submitting this patch.
2020-11-11fix for adminFEAlexander Strizhakov
- revert UserAllowPolicy description - MRF descriptions order
2020-11-10config descriptions for custom MRF policiesAlexander Strizhakov
2020-10-30Merge remote-tracking branch 'origin/develop' into feature/account-exportEgor Kislitsyn
2020-10-29Improve Keyword descriptions for AdminFEMark Felder
2020-10-28Merge remote-tracking branch 'origin/develop' into feature/account-exportEgor Kislitsyn
2020-10-27Merge branch 'develop' into 'feature/autofollowing'feld
# Conflicts: # CHANGELOG.md
2020-10-27Merge branch 'develop' into feature/account-exportMark Felder
2020-10-27Merge branch '1668-prometheus-access-restrictions' into 'develop'feld
[#1668] App metrics endpoint (Prometheus) access restrictions Closes #1668 See merge request pleroma/pleroma!3093
2020-10-27Merge branch 'develop' into 'feature/autofollowing'feld
# Conflicts: # CHANGELOG.md
2020-10-20Merge remote-tracking branch 'origin/develop' into feature/account-exportEgor Kislitsyn
2020-10-20[#1668] Formatting fix.Ivan Tashkinov
2020-10-20Rename `Pleroma.Backup` to `Pleroma.User.Backup`Egor Kislitsyn
2020-10-20[#1668] Added :prometheus group config to config/description.exs.Ivan Tashkinov
2020-10-16Remove suggestionsMark Felder
2020-10-16The suggestions are problematic as they need to be real local account namesMark Felder
2020-10-16Adds feature to permit e.g., local admins and community moderators to ↵Mark Felder
automatically follow all newly registered accounts
2020-10-14Merge branch 'develop' into feature/account-exportMark Felder
2020-10-13Merge branch 'develop' into feature/gen-magicMark Felder
2020-10-13RemoteIp module nameAlexander Strizhakov
2020-10-09Merge branch 'develop' into feature/gen-magicMark Felder
2020-10-08Merge branch 'fix/2209-remoteip' into 'develop'Haelwenn
#2209 RemoteIP CIDR helper, config and doc improvements See merge request pleroma/pleroma!3057
2020-10-07Add config for Pleroma.BackupEgor Kislitsyn
2020-10-07Add BackupWorkerEgor Kislitsyn
2020-10-06Improve description yet againMark Felder
2020-10-06Don't leak internal variables in the docs. They're useless to users.Mark Felder
2020-10-06Improve descriptions for reserved and proxiesMark Felder
2020-10-06Fix docs for default headers used by RemoteIp. We only use X-Forwarded-For ↵Mark Felder
by default.
2020-09-30Fix typoAngelina Filippova
2020-09-30Fix comma typoAngelina Filippova
2020-09-29Apply 1 suggestion(s) to 1 file(s)Angelina Filippova
2020-09-29Apply 1 suggestion(s) to 1 file(s)Angelina Filippova
2020-09-28Remove extra nesting and add labels in `:frontends` settingAngelina Filippova
2020-09-21Chase the Autolinker rename from !2677Mark Felder
2020-09-18Merge branch 'media-preview-proxy-nostream' into 'develop'feld
Media preview proxy See merge request pleroma/pleroma!3001
2020-09-18Federate data through persistent websocket connectionsSteven Fuchs
2020-09-17[#2497] Configurability of :min_content_length (preview proxy). Refactoring, ↵Ivan Tashkinov
documentation, tests.
2020-09-15Merge remote-tracking branch 'remotes/origin/develop' into ↵Ivan Tashkinov
media-preview-proxy-nostream
2020-09-14Remove `:managed_config` option.rinpatch
In practice, it was already removed half a year ago, but the description and cheatsheet entries were still there. The migration intentionally does not use ConfigDB.get_by_params, since this will break migration code as soon as we add a new field is added to ConfigDB. Closes #2086
2020-09-11Merge remote-tracking branch 'remotes/origin/develop' into media-preview-proxyIvan Tashkinov
# Conflicts: # lib/pleroma/instances/instance.ex
2020-09-10Merge branch 'develop' into feature/gen-magicMark Felder
2020-09-10configurable lifetime for ephemeral activitiesAlexander Strizhakov
2020-09-10deprecation warningAlexander Strizhakov
changed namespace for activity expiration configuration
2020-09-10schedule activity expiration in ObanAlexander Strizhakov