aboutsummaryrefslogtreecommitdiff
path: root/config/description.exs
AgeCommit message (Collapse)Author
2021-06-03Merge branch 'chore/rename-chat' into 'develop'Haelwenn
Rename the non-federating Chat feature to Shout See merge request pleroma/pleroma!2842
2021-06-02Update wording for relays in docs and config descriptionMark Felder
2021-06-02FormattingMark Felder
2021-06-01disableChat / disableShout didn't actually do anything for PleromaFEMark Felder
2021-06-01Update description file for new shout config setting locationMark Felder
2021-06-01Update PleromaFE settings for the old chat boxMark Felder
2021-06-01Rename the non-federating Chat feature to ShoutMark Felder
2021-05-29Adding descriptionSnow
2021-05-20Switch from the deprecated "use Mix.config" to "import Config"Mark Felder
2021-03-30Support for configuration via AdminFEMark Felder
2021-02-23[#3213] Misc. tweaks: proper upsert in Hashtag, better feature toggle ↵Ivan Tashkinov
management.
2021-02-22Apply i1t's suggestion(s) to 1 file(s)Ivan Tashkinov
2021-02-18[#3213] HashtagsTableMigrator: fault rate allowance to enable the feature ↵Ivan Tashkinov
(defaults to 1%), counting of affected objects, misc. tweaks.
2021-02-13[#3213] `rescue` around potentially-raising `Repo.insert_all/_` calls. Misc. ↵Ivan Tashkinov
improvements (docs etc.).
2021-02-11Merge remote-tracking branch 'remotes/origin/develop' into ↵Ivan Tashkinov
feature/object-hashtags-rework # Conflicts: # CHANGELOG.md # lib/mix/tasks/pleroma/database.ex # lib/pleroma/web/templates/feed/feed/_activity.rss.eex
2021-02-11[#3213] Reorganized hashtags cleanup. Transaction-wrapped ↵Ivan Tashkinov
Hashtag.get_or_create_by_names/1. Misc. improvements.
2021-02-08Merge branch 'chore/descriptions-improvements' into 'develop'rinpatch
More descriptions improvements See merge request pleroma/pleroma!3307
2021-02-08Improve various descriptions and labelsMark Felder
2021-02-08Make the suggestion match the default valueMark Felder
2021-02-08Improved Mailer descriptionsMark Felder
2021-02-07[#3213] Partially addressed code review points.Ivan Tashkinov
migration rollback task changes, hashtags-related config handling tweaks, `hashtags.data` deletion (unused).
2021-02-06Alpha-sort adaptersMark Felder
Add various labels, descriptions and suggestions for all adapter settings and try to use the same terminology by the service provider.
2021-02-06Move Enabled to top as it's the master control of all email. Description not ↵Mark Felder
really needed.
2021-02-06More description improvementsMark Felder
2021-02-06Update SMTP error description and default valueMark Felder
2021-02-06Update Swoosh docs URL, lintMark Felder
2021-02-06There is no reason to expose these Local adapter settings either.Mark Felder
2021-02-06Remove No MX lookups settingMark Felder
This setting defaults to false so the relay host will be used in an MX query so multiple SMTP servers can be used. gen_smtp code states that all records returned from the MX query are attempted in order and only a permanent SMTP error will stop the client from attempting other servers in the list. Connection failures, TLS issues, etc will cause it to try the next host. If there is no MX record associated with the relay host, it automatically tries connecting to it directly. There is really no reason to expose this to end users. The default value is fine for everyone.
2021-02-06Improve SMTP adapter setting descriptionsMark Felder
2021-02-06No reason to suggest users try the useless "Local" mail adapterMark Felder
2021-01-31Merge remote-tracking branch 'remotes/origin/develop' into ↵Ivan Tashkinov
feature/object-hashtags-rework # Conflicts: # CHANGELOG.md
2021-01-31[#3213] ActivityPub: implemented subqueries-based hashtags filtering, ↵Ivan Tashkinov
removed aggregation-based hashtags filtering.
2021-01-31[#3213] Added HashtagsCleanupWorker periodic job.Ivan Tashkinov
2021-01-29Add missing :ex_aws, :s3, :region settingMark Felder
2021-01-26Merge branch 'service-worker-allowed-header' into 'develop'feld
Ability to set custom HTTP headers per each frontend See merge request pleroma/pleroma!3247
2021-01-21Add Invalidation Script url_format settingMark Felder
2021-01-21Allow to define custom HTTP headers per each frontendeugenijm
2021-01-21Ability to set the Service-Worker-Allowed headereugenijm
2021-01-21[#3213] HashtagsTableMigrator: failures handling fix, retry function.Ivan Tashkinov
Changed default hashtags filtering strategy to non-aggregate approach.
2021-01-21Merge remote-tracking branch 'remotes/origin/develop' into ↵Ivan Tashkinov
feature/object-hashtags-rework # Conflicts: # CHANGELOG.md
2021-01-21use proper namingAlexander Strizhakov
for MediaProxyWarmingPolicy in ConcurrentLimiter
2021-01-21configurable limits for ConcurrentLimiterAlexander Strizhakov
Pleroma.Web.RichMedia.Helpers & Pleroma.Web.MediaProxy
2021-01-16[#3213] Refactoring of HashtagsTableMigrator. Hashtag timeline performance ↵Ivan Tashkinov
optimization (auto switch to non-aggregate join strategy when efficient).
2021-01-12Deprecate Pleroma.Uploaders.S3, :public_endpointMark Felder
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.