Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-24 | Make AntiLinkSpamPolicy history-aware | Tusooa Zhu | |
2022-07-24 | Make HashtagPolicy history-aware | Tusooa Zhu | |
2022-07-23 | Make NoEmptyPolicy work with Update | Tusooa Zhu | |
2022-07-23 | Make NormalizeMarkup history-aware | Tusooa Zhu | |
2022-07-23 | Make NoPlaceholderTextPolicy history-aware | Tusooa Zhu | |
2022-07-23 | Make MediaProxyWarmingPolicy history-aware | Tusooa Zhu | |
2022-07-23 | Make ForceMentionsInContent history-aware | Tusooa Zhu | |
2022-07-23 | Make EnsureRePrepended history-aware | Tusooa Zhu | |
2022-07-23 | Make MRF Keyword history-aware | Tusooa Zhu | |
2022-05-18 | StealEmojiPolicy: fix String rejected_shortcodes | Hélène | |
* rejected_shortcodes is defined as a list of strings in the configuration description. As such, database-based configuration was led to handle those settings as strings, and not as the actually expected type, Regex. * This caused each message passing through this MRF, if a rejected shortcode was set and the emoji did not exist already on the instance, to fail federating, as an exception was raised, swiftly caught and mostly silenced. * This commit fixes the issue by introducing new behavior: strings are now handled as perfect matches for an emoji shortcode (meaning that if the emoji-to-be-pulled's shortcode is in the blacklist, it will be rejected), while still supporting Regex types as before. | |||
2022-05-08 | Merge branch 'improve_anti_followbot_policy' into 'develop' | Haelwenn | |
Also use actor_type to determine if an account is a bot in antiFollowbotPolicy Closes #2561 See merge request pleroma/pleroma!3498 | |||
2022-05-08 | Also use actor_type to determine if an account is a bot in antiFollowbotPolicy | Ilja | |
2022-02-25 | Copyright bump for 2022 | Sean King | |
2022-01-27 | ForceMentionsInContent: improve display of Markdown posts | Alex Gleason | |
2022-01-26 | ForceMentionsInContent: don't apply it to top-level posts | Alex Gleason | |
2022-01-26 | ForceBotUnlistedPolicy: fix to stop unlisting my posts >:( | bot | |
2022-01-25 | ForceMentionsInContent: don't mention self | Alex Gleason | |
2022-01-25 | ForceMentionsInContent: fix order of mentions | Alex Gleason | |
2022-01-24 | ForceMentionsInContentTest: return mentions in a not terrible format | Alex Gleason | |
2022-01-24 | ForceMentionsInContent: simplify finding users | Alex Gleason | |
2022-01-24 | ForceMentionsInContent: wrap inline mentions with span tag | Alex Gleason | |
2022-01-24 | ForceMentionsInContent: use `to` instead of `tag` | Alex Gleason | |
2022-01-19 | Add ForceMentionsInContentPolicy | rinpatch | |
Even though latest PleromaFE supports displaying these properly, mobile apps still exist, so I think we should offer a workaround to those who want it. | |||
2021-10-06 | CI: Bump lint stage to elixir-1.12 | Haelwenn (lanodan) Monnier | |
Elixir 1.12 changed formatting rules, this allows to avoid having to rollback to run `mix format` | |||
2021-08-14 | Add Admin-FE menu for StealEmojiPolicy | Sam Therapy | |
2021-08-10 | ObjectAgePolicy: Fix pattern matching on published | Haelwenn (lanodan) Monnier | |
2021-08-06 | Improve readability | Egor Kislitsyn | |
2021-08-06 | Make transparency_exclusions use tuples in admin-fe | Ilja | |
* Make it use tuples * I also changed the keys for key_placeholder and value_placeholder to use snake_case instead of camelCase | |||
2021-08-06 | Add key- and valuePlaceholders for quarantined_instances and mrf_simple | Ilja | |
* I also added for keywordpolicy as well now. It was done in the admin-fe, but is better to be done here * I also added comments to explain why we did the _info keys (backwards compatibility) | |||
2021-08-06 | Change what nodeinfo returns without breaking backwards compatibility | Ilja | |
* Only for SimplePolicy for now * I added an extra mrf_simple_info key that has an object as value. The object contains only relevant extra info | |||
2021-08-06 | Return maps in node_info | Ilja | |
It's easiest (and imo most proper) to use tuples {"instance, "reason"} in BE, but for FE maps like %{"instance": "instance", "reason", "reason"} are better. I changed it so that node_info returns maps now for simple_policy and quarantined instances. | |||
2021-08-06 | config :mrf, :transparency_exclusions works with tumples now | Ilja | |
2021-08-06 | Make quarentine work with list of tuples instead of strings | Ilja | |
2021-08-06 | Make mrfSimple work with tuples | Ilja | |
* Changed SimplePolicy * I also grepped in test/ for ':mrf_simple' to see what other things could be affected | |||
2021-06-07 | MRF: create MRF.Policy behaviour separate from MRF module | Alex Gleason | |
Speeds up recompilation by reducing compile-time deps | |||
2021-05-31 | Merge remote-tracking branch 'pleroma/develop' into cycles-base-url | Alex Gleason | |
2021-05-31 | Deprecate Pleroma.Web.base_url/0 | Alex Gleason | |
Use Pleroma.Web.Endpoint.url/0 directly instead. Reduces compiler cycles. | |||
2021-04-30 | Merge remote-tracking branch 'upstream/develop' into simplepolicy-announce-leak | Alex Gleason | |
2021-04-30 | SimplePolicy: filter string Objects | Alex Gleason | |
2021-04-30 | SimplePolicy: filter nested objects | Alex Gleason | |
2021-03-30 | Prefer FollowBot naming convention vs Followbot | Mark Felder | |
2021-03-30 | Remove Task.async as it is broken here and probably a premature optimization ↵ | Mark Felder | |
anyway | |||
2021-03-30 | Do not try to follow local users. Their posts are already available locally ↵ | Mark Felder | |
on the instance. | |||
2021-03-30 | Change module name to FollowbotPolicy | Mark Felder | |
2021-03-30 | Lint | Mark Felder | |
2021-03-30 | Better checking of previous follow request attempts | Mark Felder | |
2021-03-30 | Prevent duplicates from being processed | Mark Felder | |
2021-03-30 | Make the followbot only dispatch follow requests once per 30 day period | Mark Felder | |
2021-03-30 | Enforce that the followbot must be marked as a bot. | Mark Felder | |
2021-03-30 | Try to handle misconfiguration scenarios gracefully | Mark Felder | |