They are basically local-only communities on lemmy.world at this point, unfortunately. There is no federation to any other instance for any lemmy.world user posts on those communities.
They are basically local-only communities on lemmy.world at this point, unfortunately. There is no federation to any other instance for any lemmy.world user posts on those communities.
The maximum file size limit for images hosted directly on lemm.ee servers is always visible in the sidebar of our front page. The limit stands at 500kb per image currently.
Additionally, It’s also possible to post images larger than 500kb, they just have to be hosted externally. The markdown for this is ![alt text](image url)
It’s not really a bug, it’s just a case where app developers need to update their code to support a small change in the Lemmy API. More details here: https://lemm.ee/post/34259050/12479585
I have identified two reasons for broken thumbnails right now:
Regarding your question:
Lemmy federation basically works by copying stuff from their source instance to all other federated instances. So if I write a comment on lemm.ee, other federated instances will get their own copy of my comment. They will also all know that the “authority” for this comment is lemm.ee.
If an admin on another instance decides to delete their local copy of my comment on lemm.ee, then they are always free to do so (for example, some instances might want to moderate more strictly), but any actions they take like this are limited to their own instance - for the rest of Lemmy, lemm.ee remains the authority for this comment, so individual remote instance admins taking actions won’t have any effect on any other instances.
As for the original topic of modlog federation, basically it just boils down to this: just like with the comment example above, Lemmy instances also save a local copy of incoming federated mod logs. The Lemmy software does not yet have 100% coverage in terms of federating mod logs (for example, there are no federated logs yet for instance admins banning remote users), but this coverage has been increasing, and I expect this will eventually get to 100% (just needs more dev time really).
Also, if some instance admins try to tamper with their mod logs, then other instances can still see the real history, because there is no way for an instance admin to delete copies of their mod log from other instances.
Banning a local user from a local community does actually federate already
Most actions federate, any exceptions which aren’t federated yet are generally just there because the federation logic has not been implemented (but improvements are constantly being worked on).
Generally federating the modlog is mostly just there for informative purposes. As in, we can check what mod actions were taken on instance A through the modlog on instance B (and there is no mechanism in Lemmy for other instances to retroactively remove or hide federated modlog items, btw).
Basically, yes!
For the backend: our traffic is load balanced between multiple servers, so I can just spin up a new server with the latest version of Lemmy, add it to the load balancer, and then start taking down the servers with older versions. That way, there is no disruption at all for users, because there is always a server available to handle incoming traffic. The only requirement for this is that the new version of Lemmy can’t have database migrations which break the old running servers.
For lemmy-ui: it’s a bit more complicated, because even with a load balancer, it’s still possible that one user making multiple sequential requests can end up getting responses from different servers. This is problematic, because during an upgrade, files from the new version are not available on the old servers, and vice versa. Fortunately, there are many ways to solve this problem, for lemm.ee, the solution I use is to just always serve lemmy-ui files from object storage, for all versions. In other words, after I upload lemmy-ui files for a new version, these will immediately also be available on old servers.
By the way, as a mini-present, I have sneakily updated our Lemmy to 0.19.4! It was possible to do this one without any downtime, so I just did it quietly in the background.
I temporarily transferred the community to myself and was able to undelete it. I’ve transferred it back to you now, should be all good.
They are using an allowlist rather than a blocklist, unlike most big instances. We are linked, but we’re not on their allowlist, so the result is still that they block all federation from lemm.ee.
Can you try logging in first at https://next.lemm.ee/login - or are you seeing this while already logged in?
Aha, I think this restore feature is missing from the standard Lemmy UI.
Maybe this will help: I quickly implemented a very basic restore button on lemmy-ui-next. Can you check if you see a “Restore” button in the sidebar at https://next.lemm.ee/c/eurographicnovels? Note that you must be logged in as a moderator to see this button.
I need to step away from my computer for a while, but if this doesn’t work, then I will be able to look into it further during the weekend.
I agree that using the mod log to attack other users with inaccurate mod action reasons is not really justifiable.
We now have some additional guidance about this here under the moderator responsibilities section:
Ensure that they only provide accurate and clear reasons for mod actions
I will make a separate announcement post about this as well shortly.
Unfortunately, due to the nature of mod log federation on Lemmy, it’s not really possible to retroactively change mod action reasons currently. I am sorry about that. If this does end up causing problems for you in the future, you could point people to this thread for context.
Hey, indeed it appears that the community was somehow removed by you:
Notice it says “Deleted by creator” .
Can you check in the top right corner, in the area visible in my screenshot, is there not a small “Restore” link? This should in theory let you un-delete the community.
We had a temporary delay with outgoing federation. Everything should be recovered and back to normal now!
Yes, they indeed blocked us a while ago, AFAIK it was planned as a temporary thing, but no idea where they stand on it now.
Hey! Do I understand correctly that your app is trying to fetch any /post/<id>
directly from its source instance API? If so, I have a few ideas:
<host>/post/<id>
), you could first try to make a request to <host>/version
, and only treat the post as a Lemmy post if you get a JSON response from that endpoint where .software.name === 'lemmy'
. Otherwise, open that URL in the browser.<host>/version
is not a Lemmy response, but <host>
includes a subdomain, you could repeat the same logic from step 1 for the parent domain as well. If you detect a Lemmy API at the parent domain, then just use that to fetch the post.
I think it’s not really on your side, most likely either just something wrong on kbin.social itself, OR a side-effect of the measures lemmy.world implemented against kbin.social recently.