Results 1407 comments of Nutomic

The first step for this would be changing [Instance::read_or_create](https://github.com/LemmyNet/lemmy/blob/main/crates/db_schema/src/impls/instance.rs#L41) (and `read()` below) to join with federation_allowlist and federation_blocklist, and check if we are in blocklist mode (when allowlist is empty)...

Closing this as the question has been answered.

Not a bug, this is simply not implemented yet.

50 is the number of items in the Activitypub collection. It could be changed to show the total number of posts, but the spec is not really clear to me...

FYI the option to block federated votes in https://github.com/LemmyNet/lemmy/pull/5038 does not apply to specific "hesitated" instances. Instead you can choose which votes to allow for posts/comments and upvotes/downvotes. Either all...

It would be possible to add fields to the `instance` table for disable_votes, minimize_comments, and other things you suggest. Then each of these would have to be checked in the...

There is a separate table `federation_blocklist`, but that could probably be converted to a boolean column on the instance table.

Many of these things are too specific to implement directly in Lemmy, but they can be done as plugins instead. https://github.com/LemmyNet/lemmy-plugins

Are you running with a Lemmy 0.20 backend? Because there are many breaking changes compared to 0.19

So the loop stops at midnight, but the process keeps handling HTTP requests? And there is no error message in between? Thats very weird, I cant think of any reason...